Skip to content

Instantly share code, notes, and snippets.

@aruruka
Last active September 17, 2023 14:43
Show Gist options
  • Save aruruka/dd66cb023b1e7b6b12c1e77eaa66c4d1 to your computer and use it in GitHub Desktop.
Save aruruka/dd66cb023b1e7b6b12c1e77eaa66c4d1 to your computer and use it in GitHub Desktop.
Code snippets often used in Markdown writing, including HTML code for icons and interactive HTML code for accessibility.

Html image tags of icons frequently used in Markdown composing

Icons

Shell Icons

icon-bash-command

<img style="float: left;" src="https://i.ibb.co/JsbTwVn/terminal.png" alt="bash-command-icon" border="0" width="64" height="64">

Attention Icons

icon-important

<img style="float: left;" src="https://docs.ezmeral.hpe.com/datafabric-customer-managed/74/oxygen-webhelp/app/a4e3132304e55c477c8b.svg" alt="icon-important" border="0" width="64" height="64">

icon-note

<img style="float: left;" src="https://docs.ezmeral.hpe.com/datafabric-customer-managed/74/oxygen-webhelp/app/7905db3e6db01ebd2b30.svg" alt="icon-note" border="0" width="64" height="64">

icon-caution

<img style="float: left;" src="https://docs.ezmeral.hpe.com/datafabric-customer-managed/74/oxygen-webhelp/app/c208bc83c7ec263265c3.svg" alt="icon-caution" border="0" width="64" height="64">

Collapse and expand the code area

❕Copyright owner: ©pierrejoubert73/markdown-details-collapsible.md

Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
    • Qux

Some Code

function logSomething(something) {
  console.log('Something', something);
}

Code

<details>
  <summary>Click me</summary>
  
  ### Heading
  1. Foo
  2. Bar
     * Baz
     * Qux

  ### Some Code
  ```js
  function logSomething(something) {
    console.log('Something', something);
  }
  ```
</details>

Rules (If you don't do this, your code may not work)

  1. Always have an empty line after the </summary> tag
  2. Always have an empty line after each </details> tag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment