Markdown Page Example

From sandbox
Jump to navigation Jump to search


Template:MARKDOWN

markdown sample page


  1. Cordless Drill
    1. Description

The cordless drill is a great starter tool. Not only is it versatile, allowing you to drill holes of varying sizes in a plethora of materials but also teaches basic tool handling skills, useful when moving on to other advanced tools.

    1. Tips & Tricks

-Make sure to clearly mark the center of the hole you will be drilling.

-Chose the drill bit according to the type of material you will be drilling into and how big you want the hole to be.

-Make sure the bit is centered and secured in the chuck

-Don’t push the drill bit into the material, apply minimal pressure and let the weight of the drill do the work.

-Always remember to put the battery on charge after using it on the tool wall.

    1. Consumables

-Drill Bits

-The primary consumable for this tool are drill bits. In case you find a bit is missing or is broken in the process of using it, please contact a manager.


markdown extra examples


Apple

Pomaceous fruit of plants of the genus Malus in

the family Rosaceae.

An American computer company.

Orange

The fruit of an evergreen tree of the genus Citrus.

footnote


That's some text with a footnote.[^1]

[^1]: And that's the footnote.


Table


| Item | Value | | --------- | -----:| | Computer | $1600 | | Phone | $12 | | Pipe | $1 |


abbreviations


  • [HTML]: Hyper Text Markup Language
  • [W3C]: World Wide Web Consortium

then, elsewhere in the document, write text such as:

The HTML specification is maintained by the W3C.


emphasis ________

Please open the folder "secret_magic_box".

Please open the folder "secret _magic _box".



Under Construction


  1. Markdown Cheat Sheet

Thanks for visiting [The Markdown Guide](https://www.markdownguide.org)!

This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements. It can’t cover every edge case, so if you need more information about any of these elements, refer to the reference guides for [basic syntax](https://www.markdownguide.org/basic-syntax) and [extended syntax](https://www.markdownguide.org/extended-syntax).

    1. Basic Syntax

These are the elements outlined in John Gruber’s original design document. All Markdown applications support these elements.

      1. Heading
  1. H1
    1. H2
      1. H3
      1. Bold
    • bold text**
      1. Italic
  • italicized text*
      1. Blockquote

> blockquote

      1. Ordered List

1. First item 2. Second item 3. Third item

      1. Unordered List

- First item - Second item - Third item

      1. Code

`code`

      1. Horizontal Rule

---

      1. Link

[Markdown Guide](https://www.markdownguide.org)

      1. Image

![alt text](https://www.markdownguide.org/assets/images/tux.png)

    1. Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

      1. Table

| Syntax | Description | | ----------- | ----------- | | Header | Title | | Paragraph | Text |

      1. Fenced Code Block

``` {

 "firstName": "John",
 "lastName": "Smith",
 "age": 25

} ```

      1. Footnote

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

      1. Heading ID
      1. My Great Heading {#custom-id}
      1. Definition List

term

definition
      1. Strikethrough

~~The world is flat.~~

      1. Task List

- [x] Write the press release - [ ] Update the website - [ ] Contact the media

      1. Emoji

That is so funny! :joy:

(See also [Copying and Pasting Emoji](https://www.markdownguide.org/extended-syntax/#copying-and-pasting-emoji))

      1. Highlight

I need to highlight these ==very important words==.

      1. Subscript

H~2~O

      1. Superscript

X^2^