markdown AIではスマートフォンでも記述できるようなカスタマイズを行なっています。
それぞれの記述方法につきましてはログイン後にサンプルページがありますので、参考にしてください。
またこちらにもサンプルとして記述方法を載せています。
見出し
# Title1
## Title2
### Title3
#### Title4
##### Title5
###### Title6
テキスト入力
text
text2
**Bold**
*Italic*
htmlタグ
HTMLタグも有効となるので、下記のような表現も可能になります。
<button>タイトル1</button>
<p>文章</p>
スタイルタグも有効となるので、独自のスタイルを表現できます。
<style>
.text {
color:red;
font-weight:bold;
font-size:20px;
}
</style>
<p class="text">文章テキスト</p>
文章テキスト。
改行について
改行は通常の文書を書く用に改行をすることで余白を開けることができます。
ボーダーに余白をつけたい場合は改行を行なってください。
その他の記述
チェックボックスや箇条書きなどmarkdownの記述ができます。
- [ ] a task list item
- [ ] list syntax required
- [ ] normal **formatting**, @mentions, #1234 refs
- [ ] incomplete
- [x] completed
- hogehoge
- fuga
- bar
- [ ] motimot
1. fuba
1. fuba
1. fuba
|table1|table2|table3|
|:--|--:|:--:|
|align left|align right|align center|
|a|b|c|
### Quote
>This is Quote
>This is Quote
>>This is Quote
>>>This is Quote
### Code Block
```JavaScript
// For Debug
printf = function(str){
window.alert(str);
};
// Add the processing of applications
### Horizon
---
### Link
https://mdown.ai/
[ markdown AI](https://mdown.ai/)
![Logo](https://storage.googleapis.com/topdowncom/content/1tUnkuMDlkhMCCthuaHACDnSC603/b983b410-4651-4500-819a-f96aa6b80ece/MDown_gr.png)
まとめ
通常の markdownの記述だけでなく、HTMLタグを利用してclassをつけたりスタイルの変更をすることができるので、簡単に記述することができます。
markdown AI
こちらのサイトもmarkdownAIを使用して作成しています。