Very helpful notes about using the markdown language on the Atom editor. Second level subheadings in this README.md are ordered by how often the feature/note is expected to be used.
Just one # for all heading sizes, no space between # and anchor name, anchor tag names must be lowercase, and delimited by dashes if multi-word.
[click on this link](#my-multi-word-header)
### My Multi Word Header
You can use Atom package markdown-toc-auto
to generate a table of contents.
[I'm an inline-style link](https://www.google.com)
[I'm an inline-style link with title](https://www.google.com "Google's Homepage")
A relative link is a link that is relative to the current file. For example, if you have a README file in root of your repository, and you have another file in docs/CONTRIBUTING.md, the relative link to CONTRIBUTING.md in your README might look like this:
[Contribution guidelines for this project](docs/CONTRIBUTING.md)
URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com or http://www.example.com and sometimes example.com (but not on Github, for example).
The references should always be placed at the very bottom of the document, as it can skip text?
Here is a simple footnote[^1]. With some additional text after it.
[^1]: My reference.
docs/info-strings.md Contains a list of info strings for code fences.
https://github.github.com/gfm/
Code fences look like this:
```
I am within a code fence.
```
This thing seems to work too (I don't know why). You should also check this in the source file for this README.md:
````markdown
```
I am within many code fences.
```
````
To include a literal backtick character within a code span, you can use multiple backticks as the opening and closing delimiters:
``There is a literal backtick (`) here.``
The backtick delimiters surrounding a code span may include spaces — one after the opening, one before the closing. This allows you to place literal backtick characters at the beginning or end of a code span:
A single backtick in a code span: `` ` ``
A backtick-delimited string in a code span: `` `foo` ``
- atom-folding
- folding-markdown
- markdown-preview-enhanced
- markdown-toc-auto
- open-file
- open-terminal-here
- packages-txt by jgarber623
- Sublime-Style-Column-Selection
![alt text if cannot show img](Image.png "Title on mouse hover")