This is my Blog-Post, or what I like to call "Brain Dump".
---
title: <Title Here>
description: <Description Here>
date: <YYYY-MM-DD>
tags: ["tag1", "tag2", "tag3"]
published: <true/false>
---
<Content Here>
```js title="Title Here" caption="Caption Here"
// Code Here
```
```js showLineNumbers
// Code Here
```
or
```js showLineNumbers{numberToBeginWith}
// Code Here
```
```js {4}
// Code Here
```
or
```js {4-7}
// Code Here
```
or
```js {4,7-9}
// Code Here
```
```js {1,2}#a {3,4}#b
// Code Here
```
```js /wordToBeHighlighted/
// Code Here
```
or
```js "wordToBeHighlighted"
// Code Here
```
```js /wordToBeHighlighted/2-4
// Code Here
```
```js /wordToBeHighlighted_1/#id1 /wordToBeHighlighted_2/#id2
// Code Here
```
`[1,2,3].join(','){:js}`
`wordToBeHighlighted{:.<token>}`
e.g. This is a `highighted{:.entity.name.function}` plain text
# This is a h1 tag
## This is a h2 tag
#### This is a h4 tag
_This text will be italic_
**This text will be bold**
_You **can** combine them_
This text will be italic
This text will be bold
You can combine them
- Item 1
- Item 2
- Item 2a
- Item 2b
- Item 1
- Item 2
- Item 2a
- Item 2b
1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
![GitHub Logo](https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png)
Format: ![Alt Text](url)
http://github.com - automatic!
[GitHub](http://github.com)
http://github.com - automatic! GitHub
As Kanye West said:
> We're living the future so
> the present is our past.
As Kanye West said:
We're living the future so the present is our past.
I think you should use an
`<addr>` element here instead.
I think you should use an
<addr>
element here instead.
Here’s an example of how you can use syntax highlighting with GitHub Flavored Markdown:
```js:fancyAlert.js
function fancyAlert(arg) {
if (arg) {
$.facebox({ div: '#foo' })
}
}
```
And here's how it looks - nicely colored with styled code titles!
function fancyAlert(arg) {
if (arg) {
$.facebox({ div: "#foo" });
}
}
Here is a simple footnote[^1]. With some additional text after it.
[^1]: My reference.
Here is a simple footnote1. With some additional text after it.
- [x] list syntax required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item
- list syntax required (any unordered or ordered list supported)
- this is a complete item
- this is an incomplete item
You can create tables by assembling a list of words and dividing them with hyphens -
(for the first row), and then separating each column with a pipe |
:
| First Header | Second Header |
| --------------------------- | ---------------------------- |
| Content from cell 1 | Content from cell 2 |
| Content in the first column | Content in the second column |
First Header | Second Header |
---|---|
Content from cell 1 | Content from cell 2 |
Content in the first column | Content in the second column |
Any word wrapped with two tildes (like ~~this~~
) will appear crossed out.
Footnotes
-
My reference. ↩