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
インラインコードブロックの中では改行されず、長いインラインコードブロックは、特にスマートフォンなど横幅の小さい環境で画面からはみ出して一部読めなくなっています。
インラインコードブロック内の改行を許可することで解決できます。 例えば、以下のスタイルを追加する方法があります。
/* css/kunai/site/article.css */ div[itemtype="http://schema.org/Article"] { :not(pre)>code { display: inline-table; white-space: pre-wrap; } }
The text was updated successfully, but these errors were encountered:
ありがとうございます!Pull Requestいただけたらマージ・デプロイします!
Sorry, something went wrong.
デプロイ完了しました。 私のiPhoneでは修正を確認できましたが、 @Raclamusi さんにもご確認いただければと思います。
私の Android 実機の Chrome でも確認できました。
No branches or pull requests
インラインコードブロックの中では改行されず、長いインラインコードブロックは、特にスマートフォンなど横幅の小さい環境で画面からはみ出して一部読めなくなっています。
修正案
インラインコードブロック内の改行を許可することで解決できます。
例えば、以下のスタイルを追加する方法があります。
The text was updated successfully, but these errors were encountered: