diff options
author | garhve <git@garhve.com> | 2023-05-06 20:01:08 +0800 |
---|---|---|
committer | garhve <git@garhve.com> | 2023-05-06 20:01:08 +0800 |
commit | c30fc1128989717d35676b03a9f289ac9649ac87 (patch) | |
tree | 5dfff67fa69c90856838bacac2193a8c055cdbf0 /cn/posts/tips-of-writing | |
parent | 541759c9402d6cca9dcfd163ede853f412603a04 (diff) |
second part
Diffstat (limited to 'cn/posts/tips-of-writing')
-rw-r--r-- | cn/posts/tips-of-writing/index.html | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/cn/posts/tips-of-writing/index.html b/cn/posts/tips-of-writing/index.html index 8d8ea43..f5d9d48 100644 --- a/cn/posts/tips-of-writing/index.html +++ b/cn/posts/tips-of-writing/index.html @@ -134,35 +134,37 @@ I’ve been encountered continuously. I will make some rules to help me get and the mix of first two, <em><strong>Bold italic</strong></em>. Those all have not much difference of usage but depends on taste of user.</p> <p>So I’ll restrain myself from using them randomly.</p> -<ol> +<ul> <li><strong>Bold</strong></li> -</ol> +</ul> <p>From my view, it’s a strong express. So I’ll use it only when something <strong>really important</strong> which may causing error or really need to be highlighted! and it should only effect on 1 or 2 words.</p> -<ol start="2"> +<ul> <li><em>Italic</em></li> -</ol> +</ul> <p><em>Italic</em> is also used to highlight. But the expression is not so strong as <strong>bold</strong>. therefore, this effect will be used on new words that worth to noting. such as noun that first shows up but is a key word for next few sections, or adverb of degree.</p> -<ol start="3"> +<ul> <li><em><strong>Bold Italic</strong></em></li> -</ol> +</ul> <p>This one is too strong to use, I don’t need it since the previous two can handle most situation. So it will pass.</p> -<ol start="4"> +<ul> <li><u>underline</u></li> -</ol> +</ul> <p>Underscore is another emphasis method, but since it is used on link mostly. I’ll follow the rule, Only for link.</p> -<ol start="5"> +<ul> <li><span style="color: orange">Color</span></li> -</ol> +</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. -first one is to emphasis new noun and adverb of degree whereas second is for something <em>really important</em>.</p> +<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>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> </div> |