Theme preview
ๆ็ซ ็ฎๅฝ
Based on MarkdownPreview test.md.
Markdown
1 2 3 4 5 6 7 8 |
# H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 ### Duplicate Header ### Duplicate Header |
H1
H2
H3
H4
H5
H6
Duplicate Header
Duplicate Header
Paragraphs
1 2 3 4 |
This is a paragraph. I am still part of the paragraph. New paragraph. |
This is a paragraph. I am still part of the paragraph.
New paragraph.
Anchor
Define anchor by {#section-id}
Footnote
This is a footnote1
A footnote on “label”2
The footnote for definition3
A footnote with link4
Inline
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
`inline block` <kbd>ctrl</kbd>+<kbd>alt</kbd>+<kbd>del</kbd> **bold 1** and __bold 2__ *italic 1* and _italic 2_ ~~strike~~ ***bold 1 and italic 1*** ___bold 2 and italic 2___ __*bold 2 and italic 1*__ **_bold 1 and italic 2_** ~~*strike italic 1*~~ and *~~strike italic 2~~* ~~_strike italic 2_~~ and _~~strike italic 2~~_ ~~**strike bold 1**~~ and **~~strike bold 1~~** ~~__strike bold 2__~~ and __~~strike bold 2~~__ ~~***strike italic 1 bold 1***~~ and ***~~strike italic 1 bold 1~~*** ~~___strike italic 2 bold 2___~~ and ___~~strike italic 2 bold 2~~___ **~~*strike italic 1 bold 1*~~** and *~~**strike italic 1 bold 1**~~* __~~_strike italic 2 bold 2_~~__ and _~~__strike italic 2 bold 2__~~_ **~~_strike italic 2 bold 1_~~** and _~~**strike italic 2 bold 1**~~_ __~~*strike italic 1 bold 2*~~__ and *~~__strike italic 1 bold 2__~~* |
inline block
ctrl+alt+del
bold 1 and bold 2
italic 1 and italic 2
strike
bold 1 and italic 1
bold 2 and italic 2
bold 2 and italic 1
bold 1 and italic 2
strike italic 1 and strike italic 2
strike italic 2 and strike italic 2
strike bold 1 and strike bold 1
strike bold 2 and strike bold 2
strike italic 1 bold 1 and strike italic 1 bold 1
strike italic 2 bold 2 and strike italic 2 bold 2
strike italic 1 bold 1 and *strike italic 1 bold 1*
strike italic 2 bold 2 and _strike italic 2 bold 2_
strike italic 2 bold 1 and strike italic 2 bold 1
strike italic 1 bold 2 and strike italic 1 bold 2
Links
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
Web image  Local image  contact@revolunet.com @revolunet Issue #1 https://github.com/revolunet/sublimetext-markdown-preview/ This is a link https://github.com/revolunet/sublimetext-markdown-preview/. This is a link "https://github.com/revolunet/sublimetext-markdown-preview/". With this link (https://github.com/revolunet/sublimetext-markdown-preview/), it still works. |
Web image
Local image
www.google.com
contact@revolunet.com
@revolunet
Issue #1
https://github.com/revolunet/sublimetext-markdown-preview/
This is a link https://github.com/revolunet/sublimetext-markdown-preview/.
This is a link “https://github.com/revolunet/sublimetext-markdown-preview/".
With this link (https://github.com/revolunet/sublimetext-markdown-preview/), it still works.
Abbreviation
Abbreviations source are found in a separate markdown file specified in frontmatter.
1 2 3 4 5 |
The HTML specification is maintained by the W3C. *[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium |
The HTML specification is maintained by the W3C.
Unordered List
1 2 3 4 5 6 7 8 9 10 11 12 |
Unordered List - item 1 * item A * item B more text + item a + item b + item c * item C - item 2 - item 3 |
Unordered List
- item 1
- item A
- item B
more text
- item a
- item b
- item c
- item C
- item 2
- item 3
Ordered List
1 2 3 4 5 6 7 8 9 10 11 12 |
Ordered List 1. item 1 1. item A 2. item B more text 1. item a 2. item b 3. item c 3. item C 2. item 2 3. item 3 |
Ordered List
- item 1
- item A
- item B
more text
- item a
- item b
- item c
- item C
- item 2
- item 3
Task List
1 2 3 4 5 6 7 8 9 10 11 12 |
Task List - [X] item 1 * [X] item A * [ ] item B more text + [x] item a + [ ] item b + [x] item c * [X] item C - [ ] item 2 - [ ] item 3 |
Task List
item 2 item 3
Mixed Lists
Really Mixed Lists
should break with sane_lists
on.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
Mixed Lists - item 1 * [X] item A * [ ] item B more text 1. item a 2. itemb 3. item c * [X] item C - item 2 - item 3 Really Mixed Lists - item 1 * [X] item A - item B more text 1. item a + itemb + [ ] item c 3. item C 2. item 2 - [X] item 3 |
Mixed Lists
- item 1
item A item B more text - item a
- itemb
- item c
item C
- item 2
- item 3
Really Mixed Lists
- item 1
item A - item B
more text
- item a
- itemb
item c
- item C
- item 2
item 3
Dictionary
1 2 3 4 5 6 |
Dictionary : item 1 item 2 item 3 |
- Dictionary
item 1
item 2
item 3
Blocks
1 2 3 |
This is a block. This is more of a block. |
1 2 3 |
This is a block. This is more of a block. |
Block Quotes
1 2 |
> This is a block quote >> How does it look? |
This is a block quote. > How does it look? I think it looks good.
Fenced Block
Assuming guessing is not enabled.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
``` // Fenced **without** highlighting function doIt() { for (var i = 1; i <= slen ; i^^) { setTimeout("document.z.textdisplay.value = newMake()", i*300); setTimeout("window.status = newMake()", i*300); } } ``` ```javascript // Fenced **with** highlighting function doIt() { for (var i = 1; i <= slen ; i^^) { setTimeout("document.z.textdisplay.value = newMake()", i*300); setTimeout("window.status = newMake()", i*300); } } ``` |
1 2 3 4 5 6 7 |
// Fenced **without** highlighting function doIt() { for (var i = 1; i <= slen ; i^^) { setTimeout("document.z.textdisplay.value = newMake()", i*300); setTimeout("window.status = newMake()", i*300); } } |
|
|
Tables
1 2 3 4 5 |
| _Colors_ | Fruits | Vegetable | | ------------- |:---------------:| -----------------:| | Red | *Apple* | [Pepper](#Tables) | | ~~Orange~~ | Oranges | **Carrot** | | Green | ~~***Pears***~~ | Spinach | |
Colors | Fruits | Vegetable |
---|---|---|
Red | Apple | Pepper |
Oranges | Carrot | |
Green | Spinach |
Class or Enum | Year | Month | Day | Hours | Minutes | Seconds* | Zone Offset | Zone ID | toString Output | Where Discussed |
---|---|---|---|---|---|---|---|---|---|---|
Instant |
![]() |
2013-08-20T15:16:26.355Z |
Instant Class | |||||||
LocalDate |
![]() |
![]() |
![]() |
2013-08-20 |
Date Classes | |||||
LocalDateTime |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
2013-08-20T08:16:26.937 |
Date and Time Classes | ||
ZonedDateTime |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
2013-08-21T00:16:26.941+09:00[Asia/Tokyo] |
Time Zone and Offset Classes |
LocalTime |
![]() |
![]() |
![]() |
08:16:26.943 |
Date and Time Classes | |||||
MonthDay |
![]() |
![]() |
--08-20 |
Date Classes | ||||||
Year |
![]() |
2013 |
Date Classes | |||||||
YearMonth |
![]() |
![]() |
2013-08 |
Date Classes | ||||||
Month |
![]() |
AUGUST |
DayOfWeek and Month Enums | |||||||
OffsetDateTime |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
2013-08-20T08:16:26.954-07:00 |
Time Zone and Offset Classes | |
OffsetTime |
![]() |
![]() |
![]() |
![]() |
08:16:26.957-07:00 |
Time Zone and Offset Classes | ||||
Duration |
** | ** | ** | ![]() |
PT20H (20 hours) |
Period and Duration | ||||
Period |
![]() |
![]() |
![]() |
*** | *** | P10D (10 days) |
Period and Duration |
Smart Strong
1 2 3 4 5 |
Text with double__underscore__words. __Strong__ still works. __this__works__too__ |
Text with doubleunderscorewords.
Strong still works.
thisworkstoo
Smarty
1 2 3 4 5 6 7 |
"double quotes" 'single quotes' da--sh elipsis... |
“double quotes”
‘single quotes’
da–sh
elipsis…
Neseted Fences
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
``` This will still be parsed as a normal indented code block. ``` ``` This will still be parsed as a fenced code block. ``` - This is a list that contains multiple code blocks. - Here is an indented block ``` This will still be parsed as a normal indented code block. ``` - Here is a fenced code block: ``` This will still be parsed as a fenced code block. ``` > ``` > Blockquotes? > Not a problem! > ``` |
1 2 3 4 |
``` This will still be parsed as a normal indented code block. ``` |
1 2 |
This will still be parsed as a fenced code block. |
This is a list that contains multiple code blocks.
Here is an indented block
1 2 3 4
``` This will still be parsed as a normal indented code block. ```
Here is a fenced code block:
1 2
This will still be parsed as a fenced code block.
1 2
Blockquotes? Not a problem!
Others
Github Emoji
1
|
This is a test for emoji ๐. The emojis are images linked to github assets . |
This is a test for emoji ๐. The emojis are images linked to github assets .
People
๐๐๐ฝ๐ผ๐ข๐ ๐ง๐ฒ๐ถ๐๐๐ฅ๐๐ฆ๐ฐ๐๐ค๐ฅ๐๐ฐ๐ฅ๐๐๐ท๐ฎ๐ซ๐:couplekiss:๐ข๐ฟ๐๐๐ฏ๐จ๐๐ฅ๐ซ๐ต๐ง๐โ๏ธ๐๐๐๐ช๐จ๐พ๐ฅโ๐ณ๐ฆ๐๐ง๐โโ๐ฌ๐๐๐๐โ๐ฉ๐โค๏ธ๐๐ป๐๐๐ฏ๐ฟ๐๐๐บ๐น๐๐น๐๐๐ฝ๐๐๐๐๐๐๐จ๐ฒ๐ณ๐ท๐๐ค๐ช๐ต๐ ๐๐ ๐ถ๐๐ถ๐๐๐ด๐ต๐๐ฎ๐๐ฃ๐๐ฑ๐๐๐๐โ๏ธ๐๐ฉ๐พ๐๐ธ๐๐โ๐กโ๐๐โบ๏ธ๐๐๐๐๐๐ฑ๐๐๐ฉ๐๐ด๐ช๐๐ธ๐๐บ๐๐๐ผ๐ญโจ๐๐๐ฌโญ๏ธ๐๐๐๐๐๐๐ฆ๐ ๐ญ๐๐๐ซ๐ ๐ค๐๐ฌ๐ญ๐โ๏ธ๐ถ๐๐ฉ๐๐ฉ๐๐๐๐ค
Nature
๐๐ค๐ป๐๐๐ฆ๐ผ๐ก๐๐๐๐ต๐ซ๐ฑ๐๐ธ๐ฐ๐โ๏ธ๐ฎ๐๐๐๐๐ณ๐ถ๐๐ฌ๐๐ฒ๐ช๐พ๐๐๐๐๐ฒ๐๐๐๐๐๐๐ธ๐๐๐๐๐น๐ฅ๐ฃ๐ฟ๐บ๐๐ด๐จ๐๐๐๐๐๐๐๐ต๐๐ญ๐๐๐๐๐๐๐๐๐ด๐ผโ ๏ธ๐พ๐ง๐ท๐๐ฝ๐ฉ๐ฐ๐๐๐๐๐๐น๐ฑ๐๐๐๐โ๏ธโ๏ธ๐๐ปโ๏ธ๐ฏ๐ ๐ ๐ท๐ขโ๏ธ๐๐๐๐๐๐๐ณ๐๐บโก๏ธ
Objects
๐ฑโฐ๐๐จ๐๐ผ๐๐๐๐โพ๏ธ๐๐๐๐๐บ๐ป๐๐ฑ๐ด๐๐๐โ๏ธ๐๐ฃ๐๐๐๐๐ข๐ณ๐๐ผ๐ก๐ฐ๐๐ฒ๐ท๐ฌ๐๐ฟ๐๐๐๐ซ๐๐ฌ๐๐๐๐โฃ๏ธ๐ธโ๏ธ๐ป๐๐ช๐ฝ๐ณ๐๐ฎ๐๐ฎ๐ก๐ฏ๐ โฆ๏ธ๐ต๐๐ช๐ฉ๐๐๐ง๐ฅ๐๐โ๏ธโ๏ธ๐ฉ๐ถ๐๐ ๐๐๐ฅ๐ฃ๐๐ฆ๐ฌ๐พ๐ด๐๐ฃ๐ด๐ค๐๐ฒ๐๐ป๐๐โณ๏ธ๐๐๐๐ธ๐ซ๐๐จ๐๐งโฅ๏ธ๐๐ ๐ช๐ฏ๐โ๏ธโณ๐จ๐ฆ๐ฅ๐จ๐ฑ๐๐๐๐๐ฎ๐๐๐๐๐๐ญโฟ๐๐ข๐ ๐๐๐๏ธ๐ซ๐ช๐ฌ๐ญ๐๐๐ฃ๐๐๐ค๐ฌ๐ฝ๐ธ๐ฐ๐๐ต๐ฅ๐น๐ผ๐๐๐๐ฐ๐๐๐๐ฉ๐ข๐๐๐๐ค๐ฆ๐๐๐๐๐๐๐โ๏ธโ๏ธ๐๐๐๐ฏ๐ฎ๐๐๐ท๐๐๐ป๐๐๐๐๐๐๐๐๐ฝ๐ถ๐ก๐ ๐ก๐ท๐โ๏ธ๐๐บ๐ง๐๐๐ฟ๐ฟ๐ฌ๐โฝ๏ธ๐๐พโ ๏ธ๐โ๏ธ๐๐๐ฒ๐๐๐๐ฃ๐ ๐๐๐๐๐๐ตโ๏ธ๐๐ญ๐พ๐ฝ๐ ๐ฉ๐๐๐น๐บ๐๐บ๐๐ผ๐น๐ฎ๐ปโ๏ธ๐๐๐ท๐๐๐ง๐ด
Places
๐กโ๏ธ๐โ๏ธ๐๐ง๐ฆ๐๐ฐ๐ฒ๐โต๏ธ๐๐ ๐๐๐๐๐ ๐โช๏ธ๐ช๐๐๐จ๐ณ๐ง๐ช๐๐ฉ๐ช๐ฌ๐ช๐ธ๐ฐ๐ค๐ญ๐ก๐โฒ๏ธ๐ซ๐ทโฝ๏ธ๐ฌ๐ง๐๐ฅ๐จโจ๏ธ๐ ๐ก๐ฎ๐น๐ฎ๐พ๐ฏ๐ฏ๐ต๐ฐ๐ท๐๐ฉ๐๐๐ป๐ ๐๐ฟ๐ข๐๐๐๐๐ญ๐๐ฃ๐๐๐๐๐ข๐จ๐๐ฃ๐ท๐บโต๏ธ๐ซ๐ข๐ฐ๐ค๐ ๐๐ฝ๐๐ ๐๐๐โบ๏ธ๐ซ๐ผ๐๐ฅ๐๐๐๐ฉ๐๐๐ฌ๐ง๐บ๐ธ๐ฆโ ๏ธ๐
Symbols
๐ฏ๐ข๐ ฐ๏ธ๐๐ค๐ก๐โ๏ธโ๏ธโ๏ธโฌโซโฌ๏ธ๐ฝโถ๏ธโคต๏ธโคด๏ธโฌ ๏ธโ๏ธโ๏ธโก๏ธโช๏ธโฌ๏ธโ๏ธ๐ผโ๏ธโ๏ธ๐๐๐ ฑ๏ธ๐ผ๐๐โ๏ธโผ๏ธโซ๏ธโฌ๏ธโพ๏ธโผ๏ธโช๏ธ๐ฒโ๏ธ๐ โ๏ธ๐น๐ธ๐ฆ๐๐๐๐ฅ๐๐ฆ๐๐ง๐๐๐๐๐๐๐๐๐ ๐๐ก๐๐ข๐๐ฃ๐๐คใ๏ธ๐ยฉ๏ธโฐ๐ฑ๐๐ ๐ฏ8๏ธโฃโด๏ธโณ๏ธ๐โฉ5๏ธโฃ4๏ธโฃ๐โ๏ธ#๏ธโฃ๐โ๏ธโ๐ฒโ๏ธโโ๏ธโ๐๐โน๏ธโ๏ธ๐๐๐ต๐ท๐ถ๐ โ๏ธโฉ๏ธโ๏ธโ๏ธ๐โ๏ธ๐น๐๐ดโ๐๐9๏ธโฃ๐ณโ๏ธ๐ซ๐ต๐ท๐ญ๐ฑโญ๏ธ๐ พ๏ธ๐๐1๏ธโฃโ๐ ฟ๏ธใฝ๏ธ๐โ๏ธ๐ฐ๐ฎ๐โป๏ธ๐ดยฎ๏ธ๐๐๐ปโช๐๏ธโ๏ธโ๏ธใ๏ธ7๏ธโฃ๐ถ6๏ธโฃ๐ฏ๐น๐ธ๐บ๐ป๐๐๐ฃโ๏ธ3๏ธโฃโข๏ธ๐๐ฑ๐2๏ธโฃ๐น๐ด๐บ๐ฏ๏ธ๐ท๏ธ๐ถ๐ต๐๏ธ๐ธ๐ฒ๐ณ๐๐๐ณโ๏ธ๐ใฐ๏ธ๐พโฟ๏ธโ โช๏ธ๐ฎโฌ๏ธโฝ๏ธโป๏ธโซ๏ธ๐ณ๐บโ0๏ธโฃ
Insert
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
^^insert^^ ^^*insert italic*^^ *^^insert italic 2^^* ^^_insert italic_^^ _^^insert italic 2^^_ ^^**insert bold**^^ **^^insert bold 2^^** ^^__insert bold__^^ __^^insert bold 2^^__ ^^***insert italic bold***^^ ***^^insert italic bold 2^^*** ^^___insert italic bold___^^ ___^^insert italic bold 2^^___ **^^*insert italic bold*^^** *^^**insert italic bold 2**^^* __^^_insert italic bold_^^__ _^^__insert italic bold 2__^^_ **^^_insert italic bold_^^** _^^**insert italic bold 2**^^_ __^^*insert italic bold*^^__ *^^__insert italic bold 2__^^* |
^^insert^^
^^insert italic^^ ^^insert italic 2^^
^^insert italic^^ ^^insert italic 2^^
^^insert bold^^ ^^insert bold 2^^
^^insert bold^^ ^^insert bold 2^^
^^insert italic bold^^ ^^insert italic bold 2^^
^^insert italic bold^^ ^^insert italic bold 2^^
^^insert italic bold^^ *^^insert italic bold 2^^*
^^insert italic bold^^ _^^insert italic bold 2^^_
^^insert italic bold^^ ^^insert italic bold 2^^
^^insert italic bold^^ ^^insert italic bold 2^^
Math
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$$ evidence\_{i}=\sum\_{j}W\_{ij}x\_{j}+b\_{i} $$ $p(x|y) = \frac{p(y|x)p(x)}{p(y)}$, \(p(x|y) = \frac{p(y|x)p(x)}{p(y)}\). $$ E(\mathbf{v}, \mathbf{h}) = -\sum_{i,j}w_{ij}v_i h_j - \sum_i b_i v_i - \sum_j c_j h_j $$ \\[3 < 4\\] \begin{align} p(v_i=1|\mathbf{h}) & = \sigma\left(\sum_j w_{ij}h_j + b_i\right) \\ p(h_j=1|\mathbf{v}) & = \sigma\left(\sum_i w_{ij}v_i + c_j\right) \end{align} |
$$ evidence_{i}=\sum_{j}W_{ij}x_{j}+b_{i} $$
$p(x|y) = \frac{p(y|x)p(x)}{p(y)}$, (p(x|y) = \frac{p(y|x)p(x)}{p(y)}).
$$ E(\mathbf{v}, \mathbf{h}) = -\sum{i,j}w{ij}v_i h_j - \sum_i b_i v_i - \sum_j c_j h_j $$
\[3 < 4\]
\begin{align}
p(v_i=1|\mathbf{h}) & = \sigma\left(\sumj w{ij}h_j + b_i\right)
p(h_j=1|\mathbf{v}) & = \sigma\left(\sumi w{ij}v_i + c_j\right)
\end{align}
็ฝๆไบ้ณไน
1
|
{{% music "28196554" %}} |
YouTube
1
|
{{% youtube "wC5pJm8RAu4" %}} |
- This is a footnote [return]
- A footnote on “label” [return]
- The footnote for definition [return]
- Markdown Cheatsheet [return]
ๆ็ซ ไฝ่ ling
ไธๆฌกๆดๆฐ 2018-07-10
่ฎธๅฏๅ่ฎฎ MIT