Computer Science Mojo

~ David's Notes on coding, software and computer science




Post

A Example

Category: Pelican     Tag: Markdown   Syntax  
By: David     On: Fri 01 July 2016     

My Short cheat sheet for Markdown

Headers

H1

H2

H3

H4

H5
H6

List

Unordered list

  • list
    • sub-list
    • sub again
      • sub sub
        • subbb
  • asterisks

ordered list

  1. one
  2. two
  3. three
  4. four

Table

a b c
easy too write
1 2 3
4 5 6

Writing

Post/Page Change Status:

  • published
  • draft

two spaces and Enter for second line
haha there we go for the image:

Alt Text

  • italics
  • bold
  • Combined.

Link

link to home page

Pygments Code highlighter

Pygments supported languages

print "Hello World"
My Short cheat sheet for Markdown  


### Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6


### List
#### Unordered list
* list
    * sub-list
    * sub again
        * sub sub
            * subbb
* asterisks  

#### ordered list
1. one
2. two
3. three
4. four


### Table

a | b | c
--- | --- | ---
easy | too | write
1 | 2 | 3
4 | 5 | 6


### Writing
Post/Page Change Status:

* published
* draft

two spaces and Enter for second line  
haha there we go for the image:

![Alt Text]({static}/images/img00000000.png)

* *italics*
* **bold**
* **_Combined_**.
#### add .js for specific file
JavaScripts: https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
extra \ to excape

### Link
[link to home page](http://csmojo.com)
#### internal linking link to .md
[Learn Huge]({filename}/pages/learn-huge-whiteboard.md) 


### Pygments Code highlighter
[Pygments supported languages](http://pygments.org/languages/)