summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/nuldoc.md
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-09-20 19:56:52 +0900
committernsfisis <nsfisis@gmail.com>2023-09-20 19:56:57 +0900
commita84908b7e8a0e2423afd6b836eccf27a420270b4 (patch)
tree00204b62358f8c57fcb36f601db360626484cc1a /vhosts/blog/nuldoc.md
parent0b488f85380f964c40b0b9aae69c6611bc7978bc (diff)
downloadnsfisis.dev-a84908b7e8a0e2423afd6b836eccf27a420270b4.tar.gz
nsfisis.dev-a84908b7e8a0e2423afd6b836eccf27a420270b4.tar.zst
nsfisis.dev-a84908b7e8a0e2423afd6b836eccf27a420270b4.zip
feat(blog/nuldoc): change content format from DocBook to NulDoc
Diffstat (limited to 'vhosts/blog/nuldoc.md')
-rw-r--r--vhosts/blog/nuldoc.md104
1 files changed, 104 insertions, 0 deletions
diff --git a/vhosts/blog/nuldoc.md b/vhosts/blog/nuldoc.md
new file mode 100644
index 00000000..9133ff88
--- /dev/null
+++ b/vhosts/blog/nuldoc.md
@@ -0,0 +1,104 @@
+# Posts
+
+## Meta Information
+
+```
+struct Revision {
+ date: string
+ remark: string
+}
+
+struct PostMeta {
+ title: string
+ description: string
+ tags: string[]
+ revisions: Revision[]
+}
+```
+
+## Elements
+
+table
+tbody
+td
+tfoot
+th
+thead
+tr
+col
+colgroup
+caption
+
+blockquote
+cite
+q
+
+figure
+img
+
+section
+h
+p
+
+ul
+ol
+li
+
+a
+email
+
+time
+kbd
+
+sub
+sup
+
+dl
+dt
+dd
+
+summary
+details
+
+del
+ins
+
+br
+hr
+
+ruby
+rt
+
+note
+
+mark
+s
+strong
+
+code
+filename
+codeblock
+
+footnote
+footnoteref
+
+
+# Slides
+
+## Meta Information
+
+```
+struct Revision {
+ date: string
+ remark: string
+}
+
+struct Slide {
+ title: string
+ event: string
+ talkType: string
+ link: string
+ tags: string[]
+ revisions: Revision[]
+}
+```