Skip to content

Instantly share code, notes, and snippets.

@yugaego
Last active November 4, 2020 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yugaego/b47915995e4424502dbc61ab62df7bb9 to your computer and use it in GitHub Desktop.
Save yugaego/b47915995e4424502dbc61ab62df7bb9 to your computer and use it in GitHub Desktop.
Markdown vs Org Mode Cheat Sheet

Markdown

Headings

Top Level Header

Second Level Header

Third Level Header

Markup

We can use italics, bold, code.

Paragraphs are separated by at least one empty line.

Force line break with two spaces in the end of this line.
Here's the expected new line.


That was a horizontal rule.

Lists

  • unordered first item
  • second item
    • sub item
      1. ordered item
      2. item 2
  • third item
  • forth item

Links

This is an example link.

Code Blocks

;; Formatted block of code or text.
(defun sum (a b)
  (+ a b))
fn main() {
  println!("Example");
}

Tables

Name Phone Age
Peter 555 23
Alice 2222 33
Tom 77777 66
Name Phone Age
Peter 555 23
Alice 2222 33
Tom

Org Mode

Headings

Top Level Header

Second Level Header

Third Level Header

Markup

We can use italics, bold, code.

Paragraphs are separated by at least one empty line.

Force line break with two backslashes in the end of this line.
Here’s the expected new line.


That was a horizontal rule.

Lists

  • unordered first item
  • second item
    • sub item
      1. ordered item
      2. item 2
  • third item
  • forth item

Links

This is an example link.

Code Blocks

;; Formatted block of code or text.
(defun sum (a b)
  (+ a b))
fn main() {
  println!("Example");
}

Tables

NamePhoneAge
Peter55523
Alice222233
Tom7777766
NamePhoneAge
Peter55523
Alice222233
Tom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment