Skip to content

Instantly share code, notes, and snippets.

@yowainwright
Last active December 12, 2017 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yowainwright/1063cd5fa9ba365313e88c95e35ed635 to your computer and use it in GitHub Desktop.
Save yowainwright/1063cd5fa9ba365313e88c95e35ed635 to your computer and use it in GitHub Desktop.
Bold list headers with `.md`

Bold List Headers in Markdown

This is a test for the look of bold list headers in markdown.

The goal of this gist is to examine using <header> tags or <strong> tags.


List header that is bold with the <h4> tag.

  • List Header 1 code

    • List item
  • List Header 2 code

    • List item

List header that is bold with the <strong> tag.

  • List Header 1 code
    • List item
  • List Header 2 code
    • List item

List header of <code> that is bold with the <strong> tag.

  • List Header code snippet 1
    • List item
  • List Header code snippet 2
    • List item

List header of <code> that is bold with the <h4> tag.

  • List Header code snippet 1

    • List item
  • List Header code snippet 2

    • List item

List header of <code> that is bold with the <h5> tag.

  • List Header code snippet 1
    • List item
  • List Header code snippet 2
    • List item

List header of <code> that is bold with the <h6> tag.

  • List Header code snippet 1
    • List item
  • List Header code snippet 2
    • List item
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment