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
regression from cpprefjp/site#480, cpprefjp/site@1b301da
The text was updated successfully, but these errors were encountered:
原因分かった
## 例 ```cpp example <---------------- (1) #include <iostream> ...コードの中身... ``` <---------------- (2) * emplace_back[color ff0000] * v.push_back[link push_back.md] ### 出力 ``` <---------------- (3) 3,hello
Markdownのパーサで上における(2)から(3)が単一の完全なコードブロックとしてパースされてる、(1)から(2)は無視されてる
そもそも(1)の前に改行が無いのが問題な気がするので改行を追加すれば直ると思うけど、これを全ページ直すのはだるいので他の方法がないか考えてる
Sorry, something went wrong.
http://spec.commonmark.org/0.28/#fenced-code-blocks
A fenced code block may interrupt a paragraph, and does not require a blank line either before or after.
うちが使ってるMarkdownパーサーがうんこっぽい
http://spec.commonmark.org/0.28/#example-47
6b54aa9
saki7
No branches or pull requests
regression from cpprefjp/site#480, cpprefjp/site@1b301da
The text was updated successfully, but these errors were encountered: