22<feed xmlns =" http://www.w3.org/2005/Atom" >
33 <title >cpprefjp - C++日本語リファレンス</title >
44 <link href =" https://cpprefjp.github.io" />
5- <updated >2024-11-18T09:11:58.026777 </updated >
6- <id >bffe1d02-39a2-498f-8700-78a5db44d87e </id >
5+ <updated >2024-11-18T10:10:30.680003 </updated >
6+ <id >45e782d4-7baf-4920-8b43-b84e892e0867 </id >
77
88
9+ <entry >
10+ <title >cpprefjpでのMarkdown記法の制限と拡張 -- Markdownの制限 : 「コードブロックのあとに空行が必要な制限」を追加 #1362</title >
11+ <link href =" https://cpprefjp.github.io/start_editing/markdown_cpprefjp.html" />
12+ <id >aacc4df55989bc9337150909a9bd8ab429312730:start_editing/markdown_cpprefjp.md</id >
13+ <updated >2024-11-18T19:07:23+09:00</updated >
14+
15+ <summary type =" html" >< pre>< code> diff --git a/start_editing/markdown_cpprefjp.md b/start_editing/markdown_cpprefjp.md
16+ index c15f6e563..9c5543c1a 100644
17+ --- a/start_editing/markdown_cpprefjp.md
18+ +++ b/start_editing/markdown_cpprefjp.md
19+ @@ -87,6 +87,9 @@ comment out text...
20+ * リスト2
21+ ```
22+
23+ +### コードブロックのあとに空行が必要な制限
24+ +後述する「プログラムの修飾に関する拡張」に関連して、コードブロックのあとに説明文章を書く際には空行をあけなければなりません。
25+ +
26+
27+ ## Markdown記法の拡張
28+
29+ < /code>< /pre> </summary >
30+
31+ <author >
32+ <name >Akira Takahashi</name >
33+ 34+ </author >
35+ </entry >
36+
937 <entry >
1038 <title >cpprefjpでのMarkdown記法の制限と拡張 -- HTMLエンティティの表示崩れを修正 #1362</title >
1139 <link href =" https://cpprefjp.github.io/start_editing/markdown_cpprefjp.html" />
@@ -866,59 +894,4 @@ index 77a2d5fec..09d721ea6 100644
866894 </author >
867895 </entry >
868896
869- <entry >
870- <title >テンプレート再帰回数の制限緩和 -- GCC Webサイトのリンク切れを修正 #1363</title >
871- <link href =" https://cpprefjp.github.io/lang/cpp11/recursive_template_limit.html" />
872- <id >ea0f0c5c90dabb6eca1418d5ab1e4c37bc839f2b:lang/cpp11/recursive_template_limit.md</id >
873- <updated >2024-11-17T23:59:26+09:00</updated >
874-
875- <summary type =" html" >< pre>< code> diff --git a/lang/cpp11/recursive_template_limit.md b/lang/cpp11/recursive_template_limit.md
876- index e32a1a0fe..84fd2d192 100644
877- --- a/lang/cpp11/recursive_template_limit.md
878- +++ b/lang/cpp11/recursive_template_limit.md
879- @@ -67,4 +67,4 @@ int main()
880- - [Variadic Templates for C++0x](https://web.archive.org/web/20230430062038/http://www.jot.fm/issues/issue_2008_02/article2/)
881- - テンプレートの再帰によって、コンパイル時間がどれくらい延びるかのレポートがある記事
882- - [C++ Language Features/Controlling implementation limits - Clang Compiler User’s Manual](http://clang.llvm.org/docs/UsersManual.html#cmdoption-ftemplate-depth)
883- -- [3.5 Options Controlling C++ Dialect - GCC Command Options](https://gcc.gnu.org/onlinedocs/gcc/gcc-command-options/options-controlling-c%2B%2B-dialect.html)
884- \ No newline at end of file
885- +- [3.5 Options Controlling C++ Dialect - GCC Command Options](https://gcc.gnu.org/onlinedocs/gcc/C_002b_002b-Dialect-Options.html)
886- < /code>< /pre> </summary >
887-
888- <author >
889- <name >Akira Takahashi</name >
890- 891- </author >
892- </entry >
893-
894- <entry >
895- <title >確率が高い分岐と低い分岐を伝える属性 [[likely]], [[unlikely]] [P0479R5] -- GCC Webサイトのリンク切れを修正 #1363</title >
896- <link href =" https://cpprefjp.github.io/lang/cpp20/likely_and_unlikely_attributes.html" />
897- <id >ea0f0c5c90dabb6eca1418d5ab1e4c37bc839f2b:lang/cpp20/likely_and_unlikely_attributes.md</id >
898- <updated >2024-11-17T23:59:26+09:00</updated >
899-
900- <summary type =" html" >< pre>< code> diff --git a/lang/cpp20/likely_and_unlikely_attributes.md b/lang/cpp20/likely_and_unlikely_attributes.md
901- index c1b05c11e..9a818d36e 100644
902- --- a/lang/cpp20/likely_and_unlikely_attributes.md
903- +++ b/lang/cpp20/likely_and_unlikely_attributes.md
904- @@ -77,7 +77,7 @@ GCCやClangなど一部C++コンパイラでは独自拡張として同等機能
905-
906- ## 参照
907- - [How do the likely/unlikely macros in the Linux kernel work and what is their benefit? - Stack Overflow](https://stackoverflow.com/questions/109710/)
908- -- [GCC __builtin_expect組み込み関数](https://gcc.gnu.org/onlinedocs/gcc/extensions-to-the-c-language-family/other-built-in-functions-provided-by-gcc.html)
909- -- [Clang __builtin_expect組み込み関数](https://llvm.org/docs/BranchWeightMetadata.html)
910- +- [GCC `__builtin_expect`組み込み関数](https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html)
911- +- [Clang `__builtin_expect`組み込み関数](https://llvm.org/docs/BranchWeightMetadata.html)
912- - [P0479R2 Attributes for Likely and Unlikely Statements (Revision 2)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0479r2.html)
913- -- [P0479R5 Proposed wording for likely and unlikely attributes (Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0479r5.html)
914- \ No newline at end of file
915- +- [P0479R5 Proposed wording for likely and unlikely attributes (Revision 5)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0479r5.html)
916- < /code>< /pre> </summary >
917-
918- <author >
919- <name >Akira Takahashi</name >
920- 921- </author >
922- </entry >
923-
924897</feed >
0 commit comments