Markdown » 이력 » 버전 2
Jinwuk Admin, 2018/07/19 23:08
1 | 1 | Jinwuk Admin | h1. Markdown |
---|---|---|---|
2 | 1 | Jinwuk Admin | |
3 | 1 | Jinwuk Admin | * Markdown 과 관련하여 생각이상으로 유용한 페이지는 다음과 같다. |
4 | 1 | Jinwuk Admin | - 해당 페이지는 그림 크기를 조절하기 위한 HTML 소스까지 첨부 되어 있어 Markdown으로 그림크기를 조절하기 어려운 경우 해당 HTML 소스를 참고하면 된다. |
5 | 1 | Jinwuk Admin | |
6 | 1 | Jinwuk Admin | "마크다운 치트시트":http://blog.epthy.com/md-cheatsheet/#tex-syntax |
7 | 1 | Jinwuk Admin | |
8 | 1 | Jinwuk Admin | h2. Markdown Here |
9 | 1 | Jinwuk Admin | |
10 | 1 | Jinwuk Admin | "원본":https://github.com/adam-p/markdown-here/wiki/Markdown-Here-Cheatsheet |
11 | 1 | Jinwuk Admin | |
12 | 2 | Jinwuk Admin | The only thing I customized is the CSS in "src/common/default.css":https://raw.githubusercontent.com/ickc/markdown-here/css-custom/src/common/default.css. |
13 | 1 | Jinwuk Admin | |
14 | 1 | Jinwuk Admin | h3. Personal Markdown-Here Settings |
15 | 1 | Jinwuk Admin | |
16 | 1 | Jinwuk Admin | * Syntax Highlighting CSS: *Solarized Light* |
17 | 1 | Jinwuk Admin | |
18 | 1 | Jinwuk Admin | * TeX Mathematical Formulae Support: the following uses *srcset* and provide 3 images in 1x, 2x, 3x respectively: |
19 | 1 | Jinwuk Admin | |
20 | 1 | Jinwuk Admin | <pre><code class="ruby"> |
21 | 1 | Jinwuk Admin | <img src="https://latex.codecogs.com/png.latex?\dpi{99}{urlmathcode}" srcset="https://latex.codecogs.com/png.latex?\dpi{99}{urlmathcode} 1x, https://latex.codecogs.com/png.latex?\dpi{198}{urlmathcode} 2x, https://latex.codecogs.com/png.latex?\dpi{297}{urlmathcode} 3x" alt="{mathcode}"> |
22 | 1 | Jinwuk Admin | </code></pre> |
23 | 1 | Jinwuk Admin | |
24 | 1 | Jinwuk Admin | Unfortunately, email doesn't seem to like *srcset*, so a good compromise will be just 2x: |
25 | 1 | Jinwuk Admin | |
26 | 1 | Jinwuk Admin | <pre><code class="ruby"> |
27 | 1 | Jinwuk Admin | <img src="https://latex.codecogs.com/png.latex?\dpi{198}{urlmathcode}" alt="{mathcode}" style="zoom: 50%"> |
28 | 1 | Jinwuk Admin | </code></pre> |
29 | 1 | Jinwuk Admin | |
30 | 1 | Jinwuk Admin | The ppi is chosen such that the text in math match normal text when Latin Modern font is used. For the use of dpi, see https://www.codecogs.com/pages/forums/pagegen.php?id=2914 |
31 | 1 | Jinwuk Admin | |
32 | 1 | Jinwuk Admin | * Enabled *Enable automatic header anchors.* |
33 | 1 | Jinwuk Admin | |
34 | 1 | Jinwuk Admin | * Disabled *Enable GFM line breaks.* |