From c754d24b162ecd504f3c4bdd8632045dd0398768 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 27 Nov 2025 05:05:04 +0900 Subject: feat(nuldoc): Djot to Markdown --- .../content/posts/2021-03-05/my-first-post.dj | 106 --------------------- .../content/posts/2021-03-05/my-first-post.md | 95 ++++++++++++++++++ 2 files changed, 95 insertions(+), 106 deletions(-) delete mode 100644 services/nuldoc/content/posts/2021-03-05/my-first-post.dj create mode 100644 services/nuldoc/content/posts/2021-03-05/my-first-post.md (limited to 'services/nuldoc/content/posts/2021-03-05') diff --git a/services/nuldoc/content/posts/2021-03-05/my-first-post.dj b/services/nuldoc/content/posts/2021-03-05/my-first-post.dj deleted file mode 100644 index 4e56219..0000000 --- a/services/nuldoc/content/posts/2021-03-05/my-first-post.dj +++ /dev/null @@ -1,106 +0,0 @@ ---- -[article] -uuid = "6e9c71fd-bc8d-43ce-99c5-13d9f5b87ed2" -title = "My First Post" -description = "これはテスト投稿です。これはテスト投稿です。これはテスト投稿です。" -tags = [] - -[[article.revisions]] -date = "2021-03-05" -remark = "公開" - -[[article.revisions]] -date = "2025-05-12" -remark = "ジェネレータやスタイルをテストするためのコンテンツを追加" ---- -{#test} -# Test - -Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim -veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea -commodo consequat. Duis aute irure dolor in reprehenderit in voluptate -velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint -occaecat cupidatat non proident, sunt in culpa qui officia deserunt -mollit anim id est laborum. - -{#sec-1} -# Section level 1 - -{#sec-2} -## Section level 2 - -{#sec-3} -### Section level 3 - -{#sec-4} -#### Section level 4 - -{#sec-5} -##### Section level 5 - -* list item 1 -* list item 2 - - * list item 2.a - * list item 2.b - -* list item 3 -* list item 3 - -1. list item 1 -1. list item 2 - - 1. list item 2.a - 1. list item 2.b - -1. list item 3 -1. list item 3 - -* [ ] list item 1 -* [ ] list item 2 - - * [ ] list item 2.a - * [ ] list item 2.b - -* [ ] list item 3 -* [ ] list item 3 - -> blockquote - ---- - -```ruby -puts "Hello, World!" -``` - -*emph* _strong_ - -{=highlighted=} - -https://example.com - -[example link](https://example.com) - -H~2~O - -2^64^ - -'foo' "bar" - -`code` - -{+inserted+} {-deleted-} - -footnote. [^foo] - -[^foo]: foo bar - -::: note -hoge piyo -::: - -| name | age | -|--------|----:| -| Taro | 10 | -| Hanako | 20 | diff --git a/services/nuldoc/content/posts/2021-03-05/my-first-post.md b/services/nuldoc/content/posts/2021-03-05/my-first-post.md new file mode 100644 index 0000000..2732b20 --- /dev/null +++ b/services/nuldoc/content/posts/2021-03-05/my-first-post.md @@ -0,0 +1,95 @@ +--- +[article] +uuid = "6e9c71fd-bc8d-43ce-99c5-13d9f5b87ed2" +title = "My First Post" +description = "これはテスト投稿です。これはテスト投稿です。これはテスト投稿です。" +tags = [] + +[[article.revisions]] +date = "2021-03-05" +remark = "公開" + +[[article.revisions]] +date = "2025-05-12" +remark = "ジェネレータやスタイルをテストするためのコンテンツを追加" +--- +# Test {#test} + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod +tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim +veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea +commodo consequat. Duis aute irure dolor in reprehenderit in voluptate +velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint +occaecat cupidatat non proident, sunt in culpa qui officia deserunt +mollit anim id est laborum. + +# Section level 1 {#sec-1} + +## Section level 2 {#sec-2} + +### Section level 3 {#sec-3} + +#### Section level 4 {#sec-4} + +##### Section level 5 {#sec-5} + +* list item 1 +* list item 2 + * list item 2.a + * list item 2.b +* list item 3 +* list item 3 + +1. list item 1 +1. list item 2 + 1. list item 2.a + 1. list item 2.b +1. list item 3 +1. list item 3 + +* [ ] list item 1 +* [ ] list item 2 + * [ ] list item 2.a + * [ ] list item 2.b +* [ ] list item 3 +* [ ] list item 3 + +> blockquote + +--- + +```ruby +puts "Hello, World!" +``` + +**emph** *strong* + +highlighted + +https://example.com + +[example link](https://example.com) + +H2O + +264 + +'foo' "bar" + +`code` + +inserted +~~deleted~~ + +footnote. [^foo] + +[^foo]: foo bar + +:::note +hoge piyo +::: + +| name | age | +|--------|----:| +| Taro | 10 | +| Hanako | 20 | -- cgit v1.2.3-70-g09d2