Skip to content

Markdown

Typora

Personal Tips:

  • copy image and then paste it into the editor, the image will also be copied into the cache folder of typora. To avoid that, just directly use the absolute path of the image. First copy the image file, and then paste it into the address bar in Chrome, which will display the absolute path like, file://.

Collapsible Section

<details>
  <summary>Click to expand!</summary>

  ## Heading
  1. A numbered
  2. list
     * With some
     * Sub bullets
</details>

an empty line after </summary>

refer to pierrejoubert73/markdown-details-collapsible.md

shortcut

It is annoying to input the tag manually. Here are I found two shortcuts. (🔗)

  • bookmarklet (🔗): add a javascript snippet as a bookmark.
  • Text Blaze: a chrome extension. Just type the customized define command /details.

mermaid: flowchart

Homepage: https://mermaid-js.github.io/

Private Examples

  • add newline in the text, use <br />. 🔗