diff options
-rw-r--r-- | cn/posts/tips-of-writing/index.html | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/cn/posts/tips-of-writing/index.html b/cn/posts/tips-of-writing/index.html index f5d9d48..7a602b0 100644 --- a/cn/posts/tips-of-writing/index.html +++ b/cn/posts/tips-of-writing/index.html @@ -153,18 +153,43 @@ So it will pass.</p> <ul> <li><u>underline</u></li> </ul> -<p>Underscore is another emphasis method, but since it is used on link mostly. I’ll follow the rule, Only for link.</p> +<p>Underscore is another emphasis method, but since it is used on link mostly. I’ll follow the rule: Only for link.</p> <ul> <li><span style="color: orange">Color</span></li> </ul> <p>Markdown doesn’t support color annotation natively. So here’s no reason I should use it. Besides, colorful blog is really ugly.</p> <hr> -<p>So to conclusion, <em>Italic</em> and <strong>Bold</strong> are the major method, and they are used to support different purpose.</p> +<p>To conclusion, <em>Italic</em> and <strong>Bold</strong> are the major methods I’ll be using, and they are used to support different purpose.</p> <p>first one is to emphasis new noun and adverb of degree whereas second is for something <strong>really important</strong>.</p> <hr> <h3 id="typesetting">Typesetting</h3> -<p>This part will cover how to put the content to make it looks better.</p> +<p>This part will cover how to set the content settings to make it looks better.</p> +<ul> +<li>Block</li> +</ul> +<blockquote> +<p>This is a block +Block is too common since it can easily fit in multi-situation. But I’ll restrict the usage of it to unify the style.</p> +</blockquote> +<p>Only use it as footnote, and should use it no more than 2 lines.</p> +<ul> +<li>Unordered list</li> +</ul> +<p>This post is written with unordered list to list rules. And that’s it, use it when context is not in order.</p> +<ul> +<li>Ordered List</li> +</ul> +<p>Opposite with unordered list, use it when context has order.</p> +<ul> +<li>Indent</li> +</ul> +<p>Indent is not markdown native feature, so I’ll keep away from it.</p> +<hr> +<p>Typesetting is the key to beautify pages. Even though the rules are few, I still need to keep in mind. +Especially the block.</p> +<hr> +<p>That’s for now. Update will continue if anything new.</p> </div> |