--- title: Quake's markdown syntax created_date: 2021-12-14 13:11:06 updated_date: 2021-12-14 13:11:06 order: author: --- ### Page link [[note:0001 "markdown-syntax"]] ambiguous link [[note:0002#demo "title"]] ### Embed link ![[todo:0001 "page-title"]] ### Admonition ``` !!! note "An optional title" Here is something you should pay attention to. ``` ### Auto Todo ``` >>> todo "title" do something ``` ### Code #### interactive code // like: https://juliadocs.github.io/Documenter.jl/stable/showcase/#Running-interactive-code Input: ```@example("java") code_typed(sqrt, (Float64,)) ``` Output: ``` ``` #### repl code run step by steps for repl languages ```@repl("repl") #1 using Statistics xs = collect(1:10) median(xs) sum(xs) ``` `#1` to tag code, can be auto insert ```@repl_block("javascript") ``` #### auto code connect ```@connect ``` ### Mathematics /// https://katex.org/ /// use: https://www.mathjax.org/ ``A x^2 + B x + C = 0`` ### Link relations ``` : "" -> : "" ``` ``` note:0001 "title" -> content:0001 "2222" note:0002 -> title ```