We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
リンクテキスト内でルビ記法を使うと、ルビとして処理されません。
[{愛|あい}](ai.html)
は
<p><a href="ai.html"><ruby>愛<rt>あい</rt></ruby></a></p>
と変換されるべき。
<p><a href="ai.html">{愛|あい}</a></p>
となる。
また、MDのリンク記法を使わないで
<a href="ai.html">{愛|あい}</a>
を入力とした場合も同じ結果。
Run vfm with DEBUG=vfm to see detailed log.
vfm
DEBUG=vfm
$ DEBUG=vfm vfm <<< '[{愛|あい}](ai.html)' vfm vfm ### mdast ### +0ms vfm root[1] (1:1-2:1, 0-18) vfm └─0 paragraph[1] (1:1-1:18, 0-17) vfm └─0 link[1] (1:1-1:18, 0-17) vfm │ title: null vfm │ url: "ai.html" vfm └─0 text "{愛|あい}" (1:2-1:8, 1-7) +1ms vfm vfm ### hast ### +2ms vfm root[1] (1:1-2:1, 0-18) vfm │ data: {"quirksMode":false} vfm └─0 element<p>[1] (1:1-1:18, 0-17) vfm │ properties: {} vfm └─0 element<a>[1] (1:1-1:18, 0-17) vfm │ properties: {"href":"ai.html"} vfm └─0 text "{愛|あい}" (1:2-1:8, 1-7) +0ms vfm {} +2ms <!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <p><a href="ai.html">{愛|あい}</a></p> </body>
The text was updated successfully, but these errors were encountered:
akabekobeko
No branches or pull requests
Issue Details
リンクテキスト内でルビ記法を使うと、ルビとして処理されません。
Expected Behavior
は
と変換されるべき。
Actual Behavior
となる。
また、MDのリンク記法を使わないで
を入力とした場合も同じ結果。
Debug log (Any)
Run
vfm
withDEBUG=vfm
to see detailed log.The text was updated successfully, but these errors were encountered: