Skip to content

Commit e4579fb

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 619d66a commit e4579fb

File tree

3 files changed

+35
-60
lines changed

3 files changed

+35
-60
lines changed

rss.xml

Lines changed: 30 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,38 @@
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">&lt;pre&gt;&lt;code&gt;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+
&lt;/code&gt;&lt;/pre&gt;</summary>
30+
31+
<author>
32+
<name>Akira Takahashi</name>
33+
<email>faithandbrave@gmail.com</email>
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">&lt;pre&gt;&lt;code&gt;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-
&lt;/code&gt;&lt;/pre&gt;</summary>
887-
888-
<author>
889-
<name>Akira Takahashi</name>
890-
<email>faithandbrave@gmail.com</email>
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">&lt;pre&gt;&lt;code&gt;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-
&lt;/code&gt;&lt;/pre&gt;</summary>
917-
918-
<author>
919-
<name>Akira Takahashi</name>
920-
<email>faithandbrave@gmail.com</email>
921-
</author>
922-
</entry>
923-
924897
</feed>

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192

193193
<url>
194194
<loc>https://cpprefjp.github.io/start_editing/markdown_cpprefjp.html</loc>
195-
<lastmod>2024-11-18T18:08:56+09:00</lastmod>
195+
<lastmod>2024-11-18T19:07:23+09:00</lastmod>
196196
<changefreq>daily</changefreq>
197197
<priority>0.8</priority>
198198
</url>

start_editing/markdown_cpprefjp.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@
192192

193193
<p class="text-right"><small>
194194
最終更新日時(UTC):
195-
<span itemprop="datePublished" content="2024-11-18T09:08:56">
196-
2024年11月18日 09時08分56秒
195+
<span itemprop="datePublished" content="2024-11-18T10:07:23">
196+
2024年11月18日 10時07分23秒
197197
</span>
198198
<br/>
199199
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
@@ -268,6 +268,8 @@ <h3>リストの前に空行が必要な制限</h3>
268268
* リスト
269269
* リスト2
270270
</code></pre></p>
271+
<h3>コードブロックのあとに空行が必要な制限</h3>
272+
<p>後述する「プログラムの修飾に関する拡張」に関連して、コードブロックのあとに説明文章を書く際には空行をあけなければなりません。</p>
271273
<h2>Markdown記法の拡張</h2>
272274
<p>Markdownだけだと表現力が足りないため、cpprefjpでは構文を拡張しています。</p>
273275
<h3>文章中のコードに関する拡張</h3>

0 commit comments

Comments
 (0)