Skip to content

jhe-software-researcher/markdown-learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

Learning .md Markup Language

Quoting Code

Use following structure to quote code, and specify the language after the first "```":

Bash:

#/bin/bash
cd my-app

Python:

import numpy as np

i = 2

Also,

 <code> this.a </code> 

can be used for inline code blocks, but not recommended due to format inconsistency. Instead, we may use a markup-style one, by:

`your code`

Quoting Text

text:

> text

Basic Styling

Basic styling is combinable.

Bold:

**text**

Italic:

*text*

Strikethrough (delete line):

~~text~~

List

Bullet Points

Use "-"

  • George Washington
  • John Adams
  • Thomas Jefferson

Using additional spaces before "-" will create further indentations.

  • Tier 1
    • Tier 2 -Tier 3

Adding Pictures

fig_1

By adding "-" before figures will also indent them.

Links

Basically, the links look like [Linked text in this file]{the actual URL to the link destination}.

  • Links to sections: [Links](directory#section). E.g. Links

Footnotes

Footnotes are basically similar to general links except that there is a "^" in the bracket.

For example, here's a simple footnote,1 and here's a longer one.2.

Indent paragraphs to include them in the footnote.

import numpy as np

Footnotes

  1. Footnotes.

  2. Longer footnotes.

About

Learning mark up language.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published