kabochappinote

articlesmarkdown
markdown memo

markdown memo


2021-04-05 12:11:37

⚪︎ 太字 : **text** = text

⚪︎ 斜体 : *text*   = text

⚪︎ 改行 : スペースx2 or <br>

⚪︎ 水平線 : *** or ---




⚪︎ 画像の挿入 : ![sample_image](../../static/img/about-bg-s.jpg)

sample_image



⚪︎ 画像の挿入(サイズ指定) :
   <img width="200" alt="sample_image" src="../../static/img/about-bg.jpg">

sample_image
  *link: target="_blank" 新規タブで表示
   <a href="../../static/img/about-bg.jpg" target="_blank">[画像]</a>



⚪︎ コードの挿入(prism.css)
   <pre><code class="language-python code_break">print("text")</code></pre>


print("text")




⚪︎ コードの挿入_行番号有り(prism.css)
   <pre class="line-numbers">
   <code class="language-python code_break">print("text1")
   print("text2")
   print("text3")
   </code></pre>

print("text1")
print("text2")
print("text3")



⚪︎ 箇条書き

- text1
    - text2
- text3
  ↓

  • text1
    • text2
  • text3

back