Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 601 Bytes

STYLE_Markdown.md

File metadata and controls

21 lines (15 loc) · 601 Bytes

Styleguide for Markdown

Rules

  • Reference-Style Links: The reference-style is the preferred syntax for links. If possible, normal words are preferred in favor of artificial IDs.

    [Markdown][]
    
    [some markdown][Markdown]
    
    [private hash syntax][mdn:private]
    
    [Markdown]:
      <https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet>
      "Markdown Cheatsheet · adam-p/markdown-here Wiki"
    [mdn:private]:
      <https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_class_fields>
      "Private class features - JavaScript | MDN"