|
2 | 2 | <feed xmlns="http://www.w3.org/2005/Atom"> |
3 | 3 | <title>cpprefjp - C++日本語リファレンス</title> |
4 | 4 | <link href="https://cpprefjp.github.io" /> |
5 | | - <updated>2024-12-16T01:46:56.827691</updated> |
6 | | - <id>43caa4df-9624-4724-bf5e-6ceda0daf7d3</id> |
| 5 | + <updated>2024-12-16T01:51:07.061611</updated> |
| 6 | + <id>c11e615f-31f9-44a8-8723-1d66c1286eac</id> |
7 | 7 |
|
8 | 8 |
|
| 9 | + <entry> |
| 10 | + <title>cpprefjpでのMarkdown記法の制限と拡張 -- Markdown拡張: 「箇条書きの前に空行が必要」「コードブロックのあとに空行が必要」の制限がなくなったので削除 #1362</title> |
| 11 | + <link href="https://cpprefjp.github.io/start_editing/markdown_cpprefjp.html"/> |
| 12 | + <id>46badd13c71e5da942317b3d1a14baf3ba843f0c:start_editing/markdown_cpprefjp.md</id> |
| 13 | + <updated>2024-12-16T10:47:58+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 ea8d3cb62..469aa5c78 100644 |
| 17 | +--- a/start_editing/markdown_cpprefjp.md |
| 18 | ++++ b/start_editing/markdown_cpprefjp.md |
| 19 | +@@ -65,32 +65,6 @@ comment out text... |
| 20 | + ``` |
| 21 | + |
| 22 | + |
| 23 | +-### リストの前に空行が必要な制限 |
| 24 | +-``` |
| 25 | +-適当な文字列 |
| 26 | +-* リスト |
| 27 | +-* リスト2 |
| 28 | +-``` |
| 29 | +- |
| 30 | +-このような書き方をすると、cpprefjpでは以下の様な表示になります。 |
| 31 | +- |
| 32 | +-``` |
| 33 | +-適当な文字列 * リスト * リスト2 |
| 34 | +-``` |
| 35 | +- |
| 36 | +-通常の文字列に続いてリストを置く場合、空行を入れる必要があります。 |
| 37 | +- |
| 38 | +-``` |
| 39 | +-適当な文字列 |
| 40 | +- |
| 41 | +-* リスト |
| 42 | +-* リスト2 |
| 43 | +-``` |
| 44 | +- |
| 45 | +-### コードブロックのあとに空行が必要な制限 |
| 46 | +-後述する「プログラムの修飾に関する拡張」に関連して、コードブロックのあとに説明文章を書く際には空行をあけなければなりません。 |
| 47 | +- |
| 48 | +- |
| 49 | + ## Markdown記法の拡張 |
| 50 | + |
| 51 | + Markdownだけだと表現力が足りないため、cpprefjpでは構文を拡張しています。 |
| 52 | +</code></pre></summary> |
| 53 | + |
| 54 | + <author> |
| 55 | + <name>Akira Takahashi</name> |
| 56 | + |
| 57 | + </author> |
| 58 | + </entry> |
| 59 | + |
9 | 60 | <entry> |
10 | 61 | <title>iterator_traits -- リンク: 定義の説明に用いられているコードにリンクを追加</title> |
11 | 62 | <link href="https://cpprefjp.github.io/reference/iterator/iterator_traits.html"/> |
@@ -270,227 +321,6 @@ index 28de17ad0..f7985e01d 100644 |
270 | 321 |
|
271 | 322 | と等しい。 |
272 | 323 |
|
273 | | -</code></pre></summary> |
274 | | - |
275 | | - <author> |
276 | | - <name>Koichi Murase</name> |
277 | | - |
278 | | - </author> |
279 | | - </entry> |
280 | | - |
281 | | - <entry> |
282 | | - <title>可変引数テンプレート [N2242] -- 誤ったコードブロック後のコード修飾を修正</title> |
283 | | - <link href="https://cpprefjp.github.io/lang/cpp11/variadic_templates.html"/> |
284 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:lang/cpp11/variadic_templates.md</id> |
285 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
286 | | - |
287 | | - <summary type="html"><pre><code>diff --git a/lang/cpp11/variadic_templates.md b/lang/cpp11/variadic_templates.md |
288 | | -index 045a6d03d..616261863 100644 |
289 | | ---- a/lang/cpp11/variadic_templates.md |
290 | | -+++ b/lang/cpp11/variadic_templates.md |
291 | | -@@ -401,4 +401,4 @@ void f(const T1&amp; t1, const T2&amp; t2, const T3&amp; t3); |
292 | | - - [N2191 Proposed Wording for Variadic Templates (Revision 1)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2191.pdf) |
293 | | - - [N2242 Proposed Wording for Variadic Templates (Revision 2)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2242.pdf) |
294 | | - - [N2488 Extending Variadic Template Template Parameters](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2488.pdf) |
295 | | --- [N2555 Extending Variadic Template Template Parameters (Revision 1)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2555.pdf) |
296 | | -\ No newline at end of file |
297 | | -+- [N2555 Extending Variadic Template Template Parameters (Revision 1)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2555.pdf) |
298 | | -</code></pre></summary> |
299 | | - |
300 | | - <author> |
301 | | - <name>Koichi Murase</name> |
302 | | - |
303 | | - </author> |
304 | | - </entry> |
305 | | - |
306 | | - <entry> |
307 | | - <title>reload_tzdb -- 誤ったコードブロック後のコード修飾を修正</title> |
308 | | - <link href="https://cpprefjp.github.io/reference/chrono/reload_tzdb.html"/> |
309 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:reference/chrono/reload_tzdb.md</id> |
310 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
311 | | - |
312 | | - <summary type="html"><pre><code>diff --git a/reference/chrono/reload_tzdb.md b/reference/chrono/reload_tzdb.md |
313 | | -index 378a2e23a..73892be89 100644 |
314 | | ---- a/reference/chrono/reload_tzdb.md |
315 | | -+++ b/reference/chrono/reload_tzdb.md |
316 | | -@@ -37,7 +37,7 @@ if (get_tzdb().version != remote_version()) { |
317 | | - ```cpp |
318 | | - return get_tzdb_list().front(); |
319 | | - ``` |
320 | | --* get_tzdb_list()[ink get_tzdb_list.md] |
321 | | -+* get_tzdb_list()[link get_tzdb_list.md] |
322 | | - * front()[link tzdb_list/front.md] |
323 | | - |
324 | | - |
325 | | -</code></pre></summary> |
326 | | - |
327 | | - <author> |
328 | | - <name>Koichi Murase</name> |
329 | | - |
330 | | - </author> |
331 | | - </entry> |
332 | | - |
333 | | - <entry> |
334 | | - <title>formattable -- 誤ったコードブロック後のコード修飾を修正</title> |
335 | | - <link href="https://cpprefjp.github.io/reference/format/formattable.html"/> |
336 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:reference/format/formattable.md</id> |
337 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
338 | | - |
339 | | - <summary type="html"><pre><code>diff --git a/reference/format/formattable.md b/reference/format/formattable.md |
340 | | -index 7e9906010..41989cc60 100644 |
341 | | ---- a/reference/format/formattable.md |
342 | | -+++ b/reference/format/formattable.md |
343 | | -@@ -55,7 +55,6 @@ int main() { |
344 | | - } |
345 | | - ``` |
346 | | - * std::format[link format.md] |
347 | | --* |
348 | | - |
349 | | - ### 出力 |
350 | | - ``` |
351 | | -</code></pre></summary> |
352 | | - |
353 | | - <author> |
354 | | - <name>Koichi Murase</name> |
355 | | - |
356 | | - </author> |
357 | | - </entry> |
358 | | - |
359 | | - <entry> |
360 | | - <title>is-integer-like -- 誤ったコードブロック後のコード修飾を修正</title> |
361 | | - <link href="https://cpprefjp.github.io/reference/iterator/is_integer_like.html"/> |
362 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:reference/iterator/is_integer_like.md</id> |
363 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
364 | | - |
365 | | - <summary type="html"><pre><code>diff --git a/reference/iterator/is_integer_like.md b/reference/iterator/is_integer_like.md |
366 | | -index d4b4118b6..ba4d9b2dd 100644 |
367 | | ---- a/reference/iterator/is_integer_like.md |
368 | | -+++ b/reference/iterator/is_integer_like.md |
369 | | -@@ -71,9 +71,9 @@ concept _Integer_like = _Is_nonbool_integral&lt;remove_cv_t&lt;_Ty&gt;&gt; || _Integer_class |
370 | | - template &lt;class _Ty&gt; |
371 | | - concept _Signed_integer_like = _Integer_like&lt;_Ty&gt; &amp;&amp; static_cast&lt;_Ty&gt;(-1) &lt; static_cast&lt;_Ty&gt;(0); |
372 | | - ``` |
373 | | --* is_integral_v[like /reference/type_traits/is_integral.md] |
374 | | --* is_same_v[like /reference/type_traits/is_same.md] |
375 | | --* remove_cv_t[like /reference/type_traits/remove_cv.md] |
376 | | -+* is_integral_v[link /reference/type_traits/is_integral.md] |
377 | | -+* is_same_v[link /reference/type_traits/is_same.md] |
378 | | -+* remove_cv_t[link /reference/type_traits/remove_cv.md] |
379 | | - |
380 | | - 上記の説明のうち構文的な要件を素直に実装している。MSVCでは、128ビット整数が*integer-class*型である。 |
381 | | - |
382 | | -</code></pre></summary> |
383 | | - |
384 | | - <author> |
385 | | - <name>Koichi Murase</name> |
386 | | - |
387 | | - </author> |
388 | | - </entry> |
389 | | - |
390 | | - <entry> |
391 | | - <title>operator== -- 誤ったコードブロック後のコード修飾を修正</title> |
392 | | - <link href="https://cpprefjp.github.io/reference/iterator/move_iterator/op_equal.html"/> |
393 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:reference/iterator/move_iterator/op_equal.md</id> |
394 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
395 | | - |
396 | | - <summary type="html"><pre><code>diff --git a/reference/iterator/move_iterator/op_equal.md b/reference/iterator/move_iterator/op_equal.md |
397 | | -index 34ea75dce..9447104c0 100644 |
398 | | ---- a/reference/iterator/move_iterator/op_equal.md |
399 | | -+++ b/reference/iterator/move_iterator/op_equal.md |
400 | | -@@ -29,7 +29,7 @@ namespace std { |
401 | | - const move_iterator&lt;Iterator2&gt;&amp; y); // (3) C++17 |
402 | | - } |
403 | | - ``` |
404 | | --* sentinel_for[link /reference/iterator/sentinel_for.md) |
405 | | -+* sentinel_for[link /reference/iterator/sentinel_for.md] |
406 | | - * move_sentinel[link /reference/iterator/move_sentinel.md] |
407 | | - |
408 | | - ## 概要 |
409 | | -</code></pre></summary> |
410 | | - |
411 | | - <author> |
412 | | - <name>Koichi Murase</name> |
413 | | - |
414 | | - </author> |
415 | | - </entry> |
416 | | - |
417 | | - <entry> |
418 | | - <title>operator- (非メンバ関数) -- 誤ったコードブロック後のコード修飾を修正</title> |
419 | | - <link href="https://cpprefjp.github.io/reference/iterator/move_iterator/op_minus.html"/> |
420 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:reference/iterator/move_iterator/op_minus.md</id> |
421 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
422 | | - |
423 | | - <summary type="html"><pre><code>diff --git a/reference/iterator/move_iterator/op_minus.md b/reference/iterator/move_iterator/op_minus.md |
424 | | -index cf039059b..c8430f9f4 100644 |
425 | | ---- a/reference/iterator/move_iterator/op_minus.md |
426 | | -+++ b/reference/iterator/move_iterator/op_minus.md |
427 | | -@@ -30,7 +30,7 @@ namespace std { |
428 | | - } |
429 | | - ``` |
430 | | - * base[link /reference/iterator/move_iterator/base.md] |
431 | | --* sized_sentinel_for[link /reference/iterator/sized_sentinel_for.md) |
432 | | -+* sized_sentinel_for[link /reference/iterator/sized_sentinel_for.md] |
433 | | - * iter_difference_t[link /reference/iterator/iter_difference_t.md] |
434 | | - * move_sentinel[link /reference/iterator/move_sentinel.md] |
435 | | - |
436 | | -</code></pre></summary> |
437 | | - |
438 | | - <author> |
439 | | - <name>Koichi Murase</name> |
440 | | - |
441 | | - </author> |
442 | | - </entry> |
443 | | - |
444 | | - <entry> |
445 | | - <title>operator= -- 誤ったコードブロック後のコード修飾を修正</title> |
446 | | - <link href="https://cpprefjp.github.io/reference/mdspan/mdspan/op_assign.html"/> |
447 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:reference/mdspan/mdspan/op_assign.md</id> |
448 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
449 | | - |
450 | | - <summary type="html"><pre><code>diff --git a/reference/mdspan/mdspan/op_assign.md b/reference/mdspan/mdspan/op_assign.md |
451 | | -index cc6946809..cccccef34 100644 |
452 | | ---- a/reference/mdspan/mdspan/op_assign.md |
453 | | -+++ b/reference/mdspan/mdspan/op_assign.md |
454 | | -@@ -34,8 +34,8 @@ int main() |
455 | | - assert(mat2.mapping() == mat1.mapping()); |
456 | | - } |
457 | | - ``` |
458 | | --* [data_handle()](data_handle.md) |
459 | | --* [mapping()](mapping.md) |
460 | | -+* data_handle()[link data_handle.md] |
461 | | -+* mapping()[link mapping.md] |
462 | | - |
463 | | - ### 出力 |
464 | | - ``` |
465 | | -</code></pre></summary> |
466 | | - |
467 | | - <author> |
468 | | - <name>Koichi Murase</name> |
469 | | - |
470 | | - </author> |
471 | | - </entry> |
472 | | - |
473 | | - <entry> |
474 | | - <title>basic_istream_view -- 誤ったコードブロック後のコード修飾を修正</title> |
475 | | - <link href="https://cpprefjp.github.io/reference/ranges/basic_istream_view.html"/> |
476 | | - <id>ebf8c8fd705a194adb7b3f83786dad9c843d143b:reference/ranges/basic_istream_view.md</id> |
477 | | - <updated>2024-12-10T21:27:26+09:00</updated> |
478 | | - |
479 | | - <summary type="html"><pre><code>diff --git a/reference/ranges/basic_istream_view.md b/reference/ranges/basic_istream_view.md |
480 | | -index 4015db8e4..9008e803c 100644 |
481 | | ---- a/reference/ranges/basic_istream_view.md |
482 | | -+++ b/reference/ranges/basic_istream_view.md |
483 | | -@@ -173,8 +173,8 @@ namespace std::ranges { |
484 | | - * input_iterator_tag[link /reference/iterator/iterator_tag.md] |
485 | | - * addressof[link /reference/memory/addressof.md] |
486 | | - * default_sentinel_t[link /reference/iterator/default_sentinel_t.md] |
487 | | --* basic_istream[likn /reference/istream/basic_istream.md] |
488 | | --* char_traits[likn /reference/string/char_traits.md] |
489 | | -+* basic_istream[link /reference/istream/basic_istream.md] |
490 | | -+* char_traits[link /reference/string/char_traits.md] |
491 | | - |
492 | | - ## バージョン |
493 | | - ### 言語 |
494 | 324 | </code></pre></summary> |
495 | 325 |
|
496 | 326 | <author> |
|
0 commit comments