이 노트에 대하여
Quartz 내보내기에서 note와 tldr, todo 같은 callout이 어떻게 렌더링되는지 쇼케이스 형식으로 시험한다. 커스텀 CSS와 키워드 지원을 확인하는 테스트 노트다.
BIBLIOGRAPHY
History
- 쇼케이스
Showcase
Note
Lorem ipsum dolor sit amet
abstract summary tldr
Lorem ipsum dolor sit amet
Info
Lorem ipsum dolor sit amet
Todo
Lorem ipsum dolor sit amet
tip hint important
Lorem ipsum dolor sit amet
done check success
Lorem ipsum dolor sit amet
question help faq
Lorem ipsum dolor sit amet
warning caution attention
Lorem ipsum dolor sit amet
failure fail missing
Lorem ipsum dolor sit amet
error danger
Lorem ipsum dolor sit amet
Bug
Lorem ipsum dolor sit amet
Example
Lorem ipsum dolor sit amet
cite quote
Lorem ipsum dolor sit amet
Keywords
투두
넥스트
돈트
완료
tempel
;;;; quartz quote-block
(qnote "#+begin_quote" n> "[!note]" n> n> r> n> "#+end_quote")
(qtldr "#+begin_quote" n> "[!tldr]" n> n> r> n> "#+end_quote")
(qsummary "#+begin_quote" n> "[!summary]" n> n> r> n> "#+end_quote")
(qabstract "#+begin_quote" n> "[!abstract] abstract" n> n> r> n> "#+end_quote")
(qtodo "#+begin_quote" n> "[!todo]" n> n> r> n> "#+end_quote")
;; [!tip] tip hint important
(qtip "#+begin_quote" n> "[!tip]" n> n> r> n> "#+end_quote")
;; [!done] done check success
(qdone "#+begin_quote" n> "[!done]" n> n> r> n> "#+end_quote")
;; [!question] question help faq
(qquestion "#+begin_quote" n> "[!question]" n> n> r> n> "#+end_quote")
;; [!warning] warning caution attention
(qwarning "#+begin_quote" n> "[!warning]" n> n> r> n> "#+end_quote")
;; [!failure] failure fail missing
(qfail "#+begin_quote" n> "[!fail]" n> n> r> n> "#+end_quote")
;; [!error] error danger
(qerror "#+begin_quote" n> "[!error]" n> n> r> n> "#+end_quote")
;; [!bug]
(qbug "#+begin_quote" n> "[!bug]" n> n> r> n> "#+end_quote")
;; [!example]
(qexample "#+begin_quote" n> "[!example]" n> n> r> n> "#+end_quote")
;; [!quote] cite quote
(qquote "#+begin_quote" n> "[!quote] quote" n> n> r> n> "#+end_quote")quartz config
- wikilinks true
/notes.junghanacs.com/quartz.config.ts
Plugin.ObsidianFlavoredMarkdown({
comments: false,
highlight: false,
wikilinks: ture,
callouts: true,
mermaid: false,
parseTags: false,
parseArrows: false,
parseBlockReferences: false,
enableInHtmlEmbed: false,
enableYouTubeEmbed: false,
enableVideoEmbed: false,
enableCheckbox: false,
}),
Plugin.OxHugoFlavouredMarkdown(
{replaceFigureWithMdImg: true,}),
Plugin.GitHubFlavoredMarkdown(),
Comments