npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aozora-ruby-parser

v0.0.4

Published

Aozora-bunko ruby parser

Downloads

6

Readme

aozora-ruby-parser

Build Status

青空文庫っぽい記法のルビを解釈するよ

オンラインデモ

続きはウェブで

Screen shot

文法

青空文庫工作員作業マニュアル 2.入力-1にある仕様のうち、ルビと[改ページ]タグのみをサポートします。その他の記法(見出しや傍点など)は、何も加工しません。

実際のところ、このライブラリは青空文庫の記法に厳格に従ったものではありません。JIS漢字コード (JIS X 0201, JIS X 0208, JIS X 0213) を前提とする青空文庫に対して、入出力に Unicode を許容すると、その性質上、「文字種」の定義が煩雑になるからです。

そのため、本ライブラリでルビの始点指示なしで利用できるのは漢字とASCIIの範囲のアルファベットと数字、全角アルファベットと数字のみです。一部の処理系との互換性のため、ひらがなカタカナを始点指示なしでルビに分解することはありません。

このパーサーが保証する入力と出力はtest/parseRegExpTest.jsを参照してください。

API

  • parser = new AozoraRubyParser(input_text: string)
    • パーサーオブジェクトを生成します
  • parser.perse()
    • パース処理を実行します。 副作用としてparse.nodesにパースされたオブジェクトの配列がセットされます
  • parser.render(template: object): string
    • templateで渡されたオブジェクトに実装されたメソッドを利用してノードを文字列化して一つの文字列に結合します

出力

パースに成功すると、オブジェクトの配列を生成します。オブジェクトはTextNodeRubyNodeNewpageNodeの三種類です。ノードの種類はtypeプロパティの文字列text|ruby|newlineで判定することができます。

全ての種類のノードはtextプロパティを持ちます。また、RubyNodertプロパティを持ちます。すべてのノードのtextプロパティを結合することで、原文からふりがなを省いたテキストを得ることができます。

フォーマットを追加する

node.typeと同じ名前のメソッドを持ったオブジェクト(変換器)を parser.render() に渡してやることで、独自のフォーマットに変換することができます。

このライブラリに付属する変換器は拡張性を持たせるためにnew AozoraRubyHTMLConverterのように初期化しますが、単純な変換器は以下のようにシンプルな実装で十分です。

var simple_converter = {
    text: function(node){ return node.text; },
    ruby: function(node){ return node.text + "(" + node.rt + ")"; },
    newpage: function(node){ return "\n\n"; }
}
var output = parser.render(simple_converter));

インストール

Bower

bower install aozora-ruby-parser

npm

Node.js でちゃんと動くかはよくわかんない

npm install aozora-ruby-parser

著作権

本リポジトリに含まれるファイルは以下の条件に基き配布されます。 (後述のsim2ruby.cssを除く)

aozora-ruby-parser.js
Copyright 2014 USAMI Kenta <[email protected]>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

sim2ruby.css

sim2ruby.css は http://roheisen.net/dl/sim2ruby.css を改変したものです。

名称

sim2ruby.css | シム・トゥ・ルビー・シーエスエス

sim2ruby.css = a cascading style sheet to simulate simple ruby.

機能概要

IE以外のブラウザでもルビタグ(振り仮名表示機能)を同じように機能させるCSSです。 “simulate simple ruby”の名前の通り、rtcやrbcなどの複雑ルビには未対応です。

著作概要

  • 作者 : MMZK | みみずく
  • 所属 : 銑鉄計画 | ローアイゼン・プロイェクト
  • 拠点 : 銑鉄網 | ローアイゼン・ネッツ
  • 版 : 皇紀2671年04月26日版 ver.1.0.4

使用条件

個人・法人・営利・非営利問わずご自由にお使いください。 邪魔ならここの枠を丸ごと消してしまっても結構です。 ただし、虚偽の著作主張だけはご勘弁願います。