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
markUpHtml 内でユーザー定義の正規表現検索置換実行後に、関数内で定義された置換が行われているため、ユーザー定義の置換に2桁の数字が含まれていると意図しない置換が発生します。
markUpHtml
vscode-language-japanese-novel/src/editor.ts
Line 53 in 280391d
独自に見出しを定義しようとして、HTMLタグ内のstyle属性でfont-sizeを指定した際に、意図しない置換が発生してしまい望む結果が得られませんでした。
font-size
想定していた結果
<div style='margin-top:5em;font-size:12q'>見出し</div>
実際に得られた結果
<div style='margin-top:5em;font-size:<span class="tcy">12</span>q'>見出し</div>
今回はstyle属性内でcalc()関数を使用して回避しました。
calc()
The text was updated successfully, but these errors were encountered:
大変失礼しました。次のビルドで影響が出ないようにします。
Sorry, something went wrong.
1.0.7 で正規表現を修正しました。ご確認ください。
早速のご対応ありがとうございます。 1.0.7にて表題の問題が解決されていることを確認しましたので、このissueはCloseさせていただきます。 迅速なご対応痛み入ります。
No branches or pull requests
markUpHtml
内でユーザー定義の正規表現検索置換実行後に、関数内で定義された置換が行われているため、ユーザー定義の置換に2桁の数字が含まれていると意図しない置換が発生します。vscode-language-japanese-novel/src/editor.ts
Line 53 in 280391d
独自に見出しを定義しようとして、HTMLタグ内のstyle属性で
font-size
を指定した際に、意図しない置換が発生してしまい望む結果が得られませんでした。想定していた結果
実際に得られた結果
今回はstyle属性内で
calc()
関数を使用して回避しました。The text was updated successfully, but these errors were encountered: