If you plan on using this on your website, just click "Use this template" or fork this repo.
I highly recommend dillinger markdown editor for editing markdown files. repl.it
is also good.
This repo has gh-pages as it's default branch. This will automatically put your README.MD file (this file) on yourusername.github.io/blog.
* Headings
* Tables
* Lists
* Links
*ignore markdown characters*
Italic
Bold
Bold and italic
\*ignore markdown characters\*
*Italic*
**Bold**
**_Bold and italic_**
Intelligence is the ability to avoid doing work, yet getting the work done.
-Linus Torvalds
> Intelligence is the ability to avoid doing work, yet getting the work done.
> -Linus Torvalds
E=MC2
Fn=Fn-1+Fn-2
##### Superscript demonstrated by Einstein famous Mass–energy equivalence
E=MC<sup>2</sup>
##### Subscript demonstrated by the equation for finding the Nth Fibonacci number recursively
F<sub>n</sub>=F<sub>n-1</sub>+F<sub>n-2</sub>
Wow, code block
Multi-line code block
In markdown, makes a haiku
Japanese poem
With JS syntax highlighting
function fib(n){
if(n < 2) return n;
return fib(n - 1) + fib(n - 2);
}
Note: Tables sometimes render incorrectly when bieng viewed in a browser. If you are having this issue, view this file here
Column | Different column |
---|---|
Table thing one | their called arguments |
Row | No, their called parameters |
Cell | Actually, their called cells. |
| Column | Different column |
| ------ | ----------- |
| Table thing one |*their called arguments* |
| Row | **No, their called parameters** |
| Cell| `Actually, their called cells.` |
- Top list
-Other thing - Top list 2
- Foo
- Bar
- Ack
- List item
- List item
- List item
- List item 1
- List item 2
- List item 3
* Top list
*-Other thing*
* Top list 2
1. *Foo*
2. *Bar*
3. *Ack*
1. List item
2. *List item*
3. **_List item_**
- List item 1
- List item 2
- List item 3
[Go to my website](https://kazmal.tech)
the earth is flat
~~the earth is flat~~
The repo for this template
Go to my website
Go to the live version of this file
(c) Kaz Malhotra 2019