Download the PHP package noi/parsedown-rubytext without Composer

On this page you can find all versions of the php package noi/parsedown-rubytext. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package parsedown-rubytext

Parsedown ルビ記法extension

noi/parsedown-rubytextは、Parsedownのルビ(ふりがな)用エクステンションです。

以下の拡張記法用エクステンションを含んでいます:

  1. \Noi\Parsedown\RubyTextTrait -- ルビ指定(inline)
  2. \Noi\Parsedown\RubyTextDefinitionTrait -- ルビ定義(reference-style)
  3. \Noi\Parsedown\AozoraRubyTextTrait -- 青空文庫ルビ形式(inline)
  4. \Noi\Parsedown\PixivRubyTextTrait -- Pixivルビ形式(inline)

また、上記の1と2のtraitを組み込んだ実装クラスも含んでいます:

以降では1と2の拡張記法の使い方について主に説明します。 3の説明はREADME-Aozora.md、4の説明はREADME-Pixiv.mdを確認してください。

Markdown

inlineルビ指定

  1. [親文字]^(ルビ)
  2. [親文字]^(ルビ) (全角カッコを使用)
  3. [親文字](ルビ) (全角カッコを使用)

これらは次の<ruby>タグを生成します:

このパッケージは、上記の書式の他にもルビ記法エクステンションを同梱しています。 青空文庫ルビ形式(README-Aozora.md)とPixivルビ形式(README-Pixiv.md)も参照してください。

reference-styleルビ定義

上記の書式を使って文書内のどこかの行でルビを定義します。 Markdownのリンク定義や、MarkdownExtraの "Abbreviations" のように、 ルビ定義行自体は変換後のHTMLに含みません。

ルビを定義した単語は、ルビ指定がない箇所も自動でルビ振り対象になります(inline codeやcode block内を除く)。

デフォルトの動作では、ルビ定義済み単語は文書内のすべての出現箇所でルビが振られます。 この動作を変更し、各単語の最初の出現箇所だけに限定することも可能です。

自動ルビ振りを初出箇所限定モードにする場合は以下のメソッドを実行してください:

自動ルビ振りの設定に関係なく、inlineルビで明示的にふりがなを指定した箇所は常に指定のルビを振ります。

モノルビ割り当て

ルビは分かち書きすることでルビ対象の各文字にモノルビとして割り当てることもできます:

上の例は次の<ruby>タグを生成します:

<ruby>
  日<rp>(</rp><rt>に<rt><rp>)</rp>
  本<rp>(</rp><rt>ほん<rt><rp>)</rp>
  語<rp>(</rp><rt>ご<rt><rp>)</rp>
</ruby>
(実際の出力は1行)

属性値の指定

ルビには属性値を追加設定することもできます。 Markdown Extra "Special Attributes" の書式と同じ {...} 形式で指定してください:

上の例は次の<ruby>タグを生成します:

<ruby id="id" class="classA classB" lang="ja">日本語<rp>(</rp><rt>にほんご</rt><rp>)</rp></ruby>

ふりがなの小書き文字(捨て仮名)自動変換

HTML変換時、ふりがなに含まれる小書き文字(捨て仮名「ぁ」「っ」など)を並字(普通の大きさ「あ」「つ」など)に自動変換することも可能です。

このモードに設定すると、次のように小字を並字に自動変換します:

自動変換モードに変更する場合は以下のメソッドを実行してください:

ふりがなは小さいフォントサイズで表示されるため、印刷媒体などの慣例では読みやすさの観点から並字を使う傾向にあります。 変換後のHTMLを小さめのフォントサイズで表示する場合や、印刷目的でも利用する場合には、自動変換モードを使うと便利です。

デフォルトでは自動変換しません。小書き文字があってもそのまま使用します。

Installation - インストール方法

Composer で以下を実行してください。

または、composer.json に以下の行を含めてください。

MarkdownExtraを使わない場合は、erusev/parsedown-extraの行は必要ありません。

Composerによるパッケージ管理をしていない場合は、include_path のいずれかに Noi/ ディレクトリを作り、そこへ lib/ 以下のファイルを置いてください。

Usage - 使い方

使い方1: Noi\ParsedownRubyText / Noi\ParsedownExtraRubyTextを使う

これらのクラスは、それぞれParsedownParsedownExtraにルビ用エクステンションを組み込んだ実装クラスです。

派生元クラスの機能に加えてルビ指定とルビ定義用の拡張記法が使用できます。 メソッドの使い方はParsedownクラスと同じです。

どちらのクラスも「青空文庫ルビ形式」と「Pixivルビ形式」のエクステンションは組み込んでいません。 これらの拡張記法を使うときは、使い方2を参考に独自派生クラスを作って組み込む必要があります。

使い方2: 独自のParsedown派生クラスにルビ記法を導入する

あなた独自のParsedown派生クラスにルビ用エクステンションを組み込む場合は、 以下のように必要なtraitを組み込んでください:

traitを組み込む際、useだけでなくregisterメソッドの実行も必要です。忘れるとエクステンションは動作しません。 忘れやすいので注意してください!

PHP5.3以前の場合

PHP5.3まではtrait未対応のためそのままでは使用できません。

組み込みたいtraitのファイルを開き、中身をコピペするなどしてクラスを作ってください。 またはPHPのバージョンアップをぜひお願いします。

動作の詳細

License

MITライセンスです。ライセンスの制限の範囲内であれば商用・非商用を問わず自由にお使いください。

Code released under the MIT License - see the LICENSE file for details.


All versions of parsedown-rubytext with dependencies

PHP Build Version
Package Version
Requires erusev/parsedown Version ~1.4
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package noi/parsedown-rubytext contains the following files

Loading the files please wait ....