tolu / markdown

Just a bunch of markdown files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

markdown

Just a collection of markdown files ranging from random notes to useful blabber.

Markdown tricks

Collapsible content with <details>

<details> on MDN

Example:

<details>
  <summary>This is the header</summary>
  And here is the expandable content!
</details>

And in action:

 Summary header (click me!)

The HTML <details> element is used as a disclosure widget from which the user can retrieve additional information.

//code works perfectly
export default () => {
  return (<h1>Hey!</h1>)
}

And subheaders

If they are not indented anyway...

open
This Boolean attribute indicates whether the details will be shown to the user on page load. Default is false and so details will be hidden.

Using your github avatar

![alt text for tobias avatar](https://avatars.githubusercontent.com/u/658586?s=150)

alt text for tobias avatar

things to read

repos to try out

About

Just a bunch of markdown files


Languages

Language:HTML 100.0%