PHP code example of jsw / commonmark-furigana-extension
1. Go to this page and download the library: Download jsw/commonmark-furigana-extension library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jsw / commonmark-furigana-extension example snippets
// 以下、デフォルトでの設定
$config = [
'sapphire' => [
'use_sutegana' => false, // trueにすると、ルビ文字のうち特定の小文字が大文字になる(ゅ→ゆ、ぁ→あ...etc)
'use_rp_tag' => false, // trueにすると、<rp>タグがルビにつく(<rp>(</rp><rt>ルビ</rt><rp>)</rp>)
]
];