Markdown是一种可以使用普通文本编辑器编写的标记语言,通过类似HTML的标记语法,它可以使普通文本内容具有一定的格式。
Markdown具有一系列衍生版本,用于扩展Markdown的功能(如表格、脚注、内嵌HTML等等),这些功能原初的Markdown尚不具备,它们能让Markdown转换成更多的格式,例如>LaTeX,Docbook。Markdown增强版中比较有名的有Markdown Extra、MultiMarkdown、 Maruku等。这些衍生版本要么基于工具,如Pandoc;要么基于网站,如GitHub和>Wikipedia,在语法上基本兼容,但在换行等细节上也有改动。

为什么有那么多人喜欢用markdown

  • 学习成本低 ——身为一个轻量级的标记语言,Markdown拥有较少的标记符号,经常用到的就更少了,而且非常简单。
  • 任何文本编辑器都可以打开 ——Markdown文档实际上就是纯文本(plain text)格式,只要是个文本编辑器都可以打开,只不过支持Markdown语法的编辑器会将其渲染成相应格式,由于其语法足够简单,即使用不支持Markdown的编辑器打开,你也能看懂。
  • 格式转换方便 ——不少Markdown编辑器支持将文档转为pdf、docx、html等,你也可以使用具有瑞士军刀之称的Pandoc轻松将Markdown文档转为其他格式
  • 你可以更多地关注内容 ——用富文本编辑器编辑文档的话,你的精力往往过多分散到排版上,有的人甚至逐句调整格式,学会Markdown的话,你的注意力又会重新转移到内容上来
  • 像记事本一样的速度 ——在Windows上办公时,我常常想,如果用记事本码字就好了,因为其打开速度实在是太快了。但记事本里的文字是没有格式的,体验很差,Markdown格式文档完美继承其速度,又添加了优美的格式。
  • 利用Github做版本控制 ——Git hub不仅仅可以用来托管代码,还可以用来托管文章,而且Github文档默认是Markdown格式的。另外,你还可以利用GitHub与Gitbook写电子书。

markdown的一些简单又使用的语法

标题

# 这是一级标题
## 这是二级标题
### 这是三级标题
###### 这是六级标题

注意:#和标题之间最好加一个空格

列表

有序列表

如果你希望有序列表,
也可以在文字前面加上 1. 2. 3. 就可以了,例如:
在markdown编辑如下:

1. 文本1
2. 文本2
4. 文本3

显现如下

  1. 文本1
  2. 文本2
  3. 文本3

注意:1. 有序列表标记和后面的文字之间要有一个空格隔开 2. 有序列表标记不是按照你写的数字进行显示的,而是根据当前有序列表标记所在位置显示的,看文本3的栗子.

无序列表

编辑如下

+ 呵呵
* 嘉嘉
- 嘻嘻
- 吼吼
- 嘎嘎
+ 桀桀
* 哈哈

显现如下

  • 呵呵
    • 嘉嘉
    • 嘻嘻
    • 吼吼
      • 嘎嘎
      • 桀桀
  • 哈哈

注意 1. 无序列表的项目符号是按照实心圆、空心圆、实心方格的层级关系递进的,如例所示。通常情况下,同一层级使用同一种标记表示,便于自己查看和管理。 2. 无序列表标记和后面的文字之间要有一个空格隔开。

引用

使用>表示引用,>>表示引用里面再套一层引用,依次类推。
编辑如下

> 这是一级引用
>> 这是二级引用
>>> 这是三级引用

> 这是一级引用

显现如下

这是一级引用

这是二级引用

这是三级引用

这是一级引用

代码引用

  • 代码块的引用

编辑如下

```
cout<<"Hello world!"
return 0;
```

显现如下

cout<<"Hello world!"

注意:`是英文下左上角esc下面的那个

  • 行内码

编辑如下

这是`javascript`代码

显现如下

这是javascript代码

引入图片

使用![Alt text](/path/to/img.jpg "Optional title")导入图片。其中:

  • Alt text为如果图片无法显示时显示的文字;
  • /path/to/img.jpg为图片所在路径;
  • Optional title为显示标题。显示效果为在你将鼠标放到图片上后,会显+ 示一个小框提示,提示的内容就是 Optional title里的内容。

编辑如下

![picture](https://files.cnblogs.com/files/A-Little-Nut/20171220_IMG_3422_看图王.bmp"支付宝打赏二维码")

显现如下
关于markdown 的简单使用(已更新)

链接

  • 使用表示行内链接。其中:
  • []内的内容为要添加链接的文字。
  • link为链接地址。
  • Optional title为显示标题。显示效果为在你将鼠标放到链接上后,会显 示一个小框提示,提示的内容就是 Optional title里的内容。

编辑如下

这就是我们常用的地址:[Baidu](www.baidu.com "百度一下,你就知道" )

显现如下
Baidu

注销markdown里一些符号

使用\表示反斜杠。在你不想显示Markdown标记时可以使用反斜杠。
编辑如下

\这里不会显示斜体\

显现如下

*这里不会显示斜体*

粗体和斜体

使用 ** 或者 __ 表示粗体。
使用 * 或者 _ 表示斜体。
编辑如下

*粗体1*    _粗体2_
斜体1\    _斜体2_

效果如下

粗体1       __粗体2__
斜体1      斜体2

空格

Markdown语法会忽略首行开头的空格,如果要体现出首行开头空两个的效果,可以使用全角符号下的空格,windows下使用shift+空格切换。

删除线

使用 ~~表示删除线。
编辑如下

~~dfhdskjf~~

显现如下

这是一条删除线

注意:~~和文字之间不能有空格

分割线

使用---或者**或者 * *表示水平分割线。

编辑如下

---

***

* * *

显现如下




注意:1. 只要*或者-大于等于三个就可组成一条平行线。
2.使用---作为水平分割线时,要在它的前后都空一行,防止---被当成标题标记的表示方式。

表格

  • ------:为右对齐。
  • :------为左对齐。
  • :------:为居中对齐。
  • -------为使用默认居中对齐。

编辑如下

| Name | Academy | score |
| - | :-: | -: |
| Harry Potter | Gryffindor| 90 |
| Hermione Granger | Gryffindor | 100 |
| Draco Malfoy | Slytherin | 90 |

显现如下

Name Academy score
Harry Potter Gryffindor 90
Hermione Granger Gryffindor 100
Draco Malfoy Slytherin 90

表情符的使用

人物

syntax preview syntax preview syntax preview
:bowtie: :bowtie: :smile: ???? :laughing: ????
:blush: ???? :smiley: ???? :relaxed: ☺️
:smirk: ???? :heart_eyes: ???? :kissing_heart: ????
:kissing_closed_eyes: ???? :flushed: ???? :relieved: ????
:satisfied: ???? :grin: ???? :wink: ????
:stuck_out_tongue_winking_eye: ???? :stuck_out_tongue_closed_eyes: ???? :grinning: ????
:kissing: ???? :kissing_smiling_eyes: ???? :stuck_out_tongue: ????
:sleeping: ???? :worried: ???? :frowning: ????
:anguished: ???? :open_mouth: ???? :grimacing: ????
:confused: ???? :hushed: ???? :expressionless: ????
:unamused: ???? :sweat_smile: ???? :sweat: ????
:disappointed_relieved: ???? :weary: ???? :pensive: ????
:disappointed: ???? :confounded: ???? :fearful: ????
:cold_sweat: ???? :persevere: ???? :cry: ????
:sob: ???? :joy: ???? :astonished: ????
:scream: ???? :neckbeard: :neckbeard: :tired_face: ????
:angry: ???? :rage: ???? :triumph: ????
:sleepy: ???? :yum: ???? :mask: ????
:sunglasses: ???? :dizzy_face: ???? :imp: ????
:smiling_imp: ???? :neutral_face: ???? :no_mouth: ????
:innocent: ???? :alien: ???? :yellow_heart: ????
:blue_heart: ???? :purple_heart: ???? :heart: ❤️
:green_heart: ???? :broken_heart: ???? :heartbeat: ????
:heartpulse: ???? :two_hearts: ???? :revolving_hearts: ????
:cupid: ???? :sparkling_heart: ???? :sparkles:
:star: :star2: ???? :dizzy: ????
:boom: ???? :collision: ???? :anger: ????
:exclamation: :question: :grey_exclamation:
:grey_question: :zzz: ???? :dash: ????
:sweat_drops: ???? :notes: ???? :musical_note: ????
:fire: ???? :hankey: ???? :poop: ????
:: ???? :+1: ???? :thumbsup: ????
:-1: ???? :thumbsdown: ???? :ok_hand: ????
:punch: ???? :facepunch: ???? :fist:
:v: ✌️ :wave: ???? :hand:
:raised_hand: :open_hands: ???? :point_up: ☝️
:point_down: ???? :point_left: ???? :point_right: ????
:raised_hands: ???? :pray: ???? :point_up_2: ????
:clap: ???? :muscle: ???? :metal: ????
:fu: ???? :walking: ???? :runner: ????
:running: ???? :couple: ???? :family: ????
:two_men_holding_hands: ???? :two_women_holding_hands: ???? :dancer: ????
:dancers: ???? :ok_woman: ????‍♀️ :no_good: ????
:information_desk_person: ???? :raising_hand: ???? :bride_with_veil: ????‍♀️
:person_with_pouting_face: :person_with_pouting_face: :person_frowning: :person_frowning: :bow: ????
:couplekiss: ???? :couple_with_heart: ???? :massage: ????
:haircut: ???? :nail_care: ???? :boy: ????
:girl: ???? :woman: ???? :man: ????
:baby: ???? :older_woman: ???? :older_man: ????
:person_with_blond_hair: :person_with_blond_hair: :man_with_gua_pi_mao: ???? :man_with_turban: ????‍♂️
:construction_worker: ???? :cop: ???? :angel: ????
:princess: ???? :smiley_cat: ???? :smile_cat: ????
:heart_eyes_cat: ???? :kissing_cat: ???? :smirk_cat: ????
:scream_cat: ???? :crying_cat_face: ???? :joy_cat: ????
:pouting_cat: ???? :japanese_ogre: ???? :japanese_goblin: ????
:see_no_evil: ???? :hear_no_evil: ???? :speak_no_evil: ????
:guardsman: ????‍♂️ :skull: ???? :feet: ????
:lips: ???? :kiss: ???? :droplet: ????
:ear: ???? :eyes: ???? :nose: ????
:tongue: ???? :love_letter: ???? :bust_in_silhouette: ????
:busts_in_silhouette: ???? :speech_balloon: ???? :thought_balloon: ????
:feelsgood: :feelsgood: :finnadie: :finnadie: :goberserk: :goberserk:
:godmode: :godmode: :hurtrealbad: :hurtrealbad: :rage1: :rage1:
:rage2: :rage2: :rage3: :rage3: :rage4: :rage4:
:suspect: :suspect: :trollface: :trollface:

自然

syntax preview syntax preview syntax preview
:sunny: ☀️ :umbrella: :cloud: ☁️
:snowflake: ❄️ :snowman: :zap:
:cyclone: ???? :foggy: ???? :ocean: ????
:cat: ???? :dog: ???? :mouse: ????
:hamster: ???? :rabbit: ???? :wolf: ????
:frog: ???? :tiger: ???? :koala: ????
:bear: ???? :pig: ???? :pig_nose: ????
:cow: ???? :boar: ???? :monkey_face: ????
:monkey: ???? :horse: ???? :racehorse: ????
:camel: ???? :sheep: ???? :elephant: ????
:panda_face: ???? :snake: ???? :bird: ????
:baby_chick: ???? :hatched_chick: ???? :hatching_chick: ????
:chicken: ???? :penguin: ???? :turtle: ????
:bug: ???? :honeybee: ???? :ant: ????
:beetle: ???? :snail: ???? :octopus: ????
:tropical_fish: ???? :fish: ???? :whale: ????
:whale2: ???? :dolphin: ???? :cow2: ????
:ram: ???? :rat: ???? :water_buffalo: ????
:tiger2: ???? :rabbit2: ???? :dragon: ????
:goat: ???? :rooster: ???? :dog2: ????
:pig2: ???? :mouse2: ???? :ox: ????
:dragon_face: ???? :blowfish: ???? :crocodile: ????
:dromedary_camel: ???? :leopard: ???? :cat2: ????
:poodle: ???? :paw_prints: ???? :bouquet: ????
:cherry_blossom: ???? :tulip: ???? :four_leaf_clover: ????
:rose: ???? :sunflower: ???? :hibiscus: ????
:maple_leaf: ???? :leaves: ???? :fallen_leaf: ????
:herb: ???? :mushroom: ???? :cactus: ????
:palm_tree: ???? :evergreen_tree: ???? :deciduous_tree: ????
:chestnut: ???? :seedling: ???? :blossom: ????
:ear_of_rice: ???? :shell: ???? :globe_with_meridians: ????
:sun_with_face: ???? :full_moon_with_face: ???? :new_moon_with_face: ????
:new_moon: ???? :waxing_crescent_moon: ???? :first_quarter_moon: ????
:full_moon: ???? :waning_gibbous_moon: ???? :last_quarter_moon: ????
:waning_crescent_moon: ???? :last_quarter_moon_with_face: ???? :first_quarter_moon_with_face: ????
:moon: ???? :earth_africa: ???? :earth_americas: ????
:earth_asia: ???? :volcano: ???? :milky_way: ????
:partly_sunny: :octocat: :octocat: :squirrel: :squirrel:
:waxing_gibbous_moon: ????

物体

syntax preview syntax preview syntax preview
:bamboo: ???? :gift_heart: ???? :dolls: ????
:school_satchel: ???? :mortar_board: ???? :flags: ????
:fireworks: ???? :sparkler: ???? :wind_chime: ????
:rice_scene: ???? :jack_o_lantern: ???? :ghost: ????
:santa: ???? :christmas_tree: ???? :gift: ????
:bell: ???? :no_bell: ???? :tanabata_tree: ????
:tada: ???? :confetti_ball: ???? :balloon: ????
:crystal_ball: ???? :cd: ???? :dvd: ????
:floppy_disk: ???? :camera: ???? :video_camera: ????
:movie_camera: ???? :computer: ???? :tv: ????
:iphone: ???? :phone: ☎️ :telephone: ☎️
:telephone_receiver: ???? :pager: ???? :fax: ????
:minidisc: ???? :vhs: ???? :sound: ????
:speaker: ???? :mute: ???? :loudspeaker: ????
:mega: ???? :hourglass: :hourglass_flowing_sand:
:alarm_clock: :watch: :radio: ????
:satellite: ???? :loop: :mag: ????
:mag_right: ???? :unlock: ???? :lock: ????
:lock_with_ink_pen: ???? :closed_lock_with_key: ???? :key: ????
:bulb: ???? :flashlight: ???? :high_brightness: ????
:low_brightness: ???? :electric_plug: ???? :battery: ????
:calling: ???? :email: ???? :mailbox: ????
:postbox: ???? :bath: ???? :bathtub: ????
:shower: ???? :toilet: ???? :wrench: ????
:nut_and_bolt: ???? :hammer: ???? :seat: ????
:moneybag: ???? :yen: ???? :dollar: ????
:pound: ???? :euro: ???? :credit_card: ????
:money_with_wings: ???? :e-mail: ???? :inbox_tray: ????
:outbox_tray: ???? :envelope: ✉️ :incoming_envelope: ????
:postal_horn: ???? :mailbox_closed: ???? :mailbox_with_mail: ????
:mailbox_with_no_mail: ???? :door: ???? :smoking: ????
:bomb: ???? :gun: ???? :hocho: ????
:pill: ???? :syringe: ???? :page_facing_up: ????
:page_with_curl: ???? :bookmark_tabs: ???? :bar_chart: ????
:chart_with_upwards_trend: ???? :chart_with_downwards_trend: ???? :scroll: ????
:clipboard: ???? :calendar: ???? :date: ????
:card_index: ???? :file_folder: ???? :open_file_folder: ????
:scissors: ✂️ :pushpin: ???? :paperclip: ????
:black_nib: ✒️ :pencil2: ✏️ :straight_ruler: ????
:triangular_ruler: ???? :closed_book: ???? :green_book: ????
:blue_book: ???? :orange_book: ???? :notebook: ????
:notebook_with_decorative_cover: ???? :ledger: ???? :books: ????
:bookmark: ???? :microscope: ???? :telescope: ????
:name_badge: ???? :newspaper: ???? :football: ????
:basketball: ???? :soccer: :baseball:
:tennis: ???? :8ball: ???? :rugby_football: ????
:bowling: ???? :golf: :mountain_bicyclist: ????
:bicyclist: ???? :horse_racing: ???? :snowboarder: ????
:swimmer: ???? :surfer: ???? :ski: ????
:spades: ♠️ :hearts: ♥️ :clubs: ♣️
:diamonds: ♦️ :gem: ???? :ring: ????
:trophy: ???? :musical_score: ???? :musical_keyboard: ????
:violin: ???? :space_invader: ???? :video_game: ????
:black_joker: ???? :flower_playing_cards: ???? :game_die: ????
:dart: ???? :mahjong: ???? :clapper: ????
:memo: ???? :pencil: ???? :book: ????
:art: ???? :microphone: ???? :headphones: ????
:trumpet: ???? :saxophone: ???? :guitar: ????
:shoe: ???? :sandal: ???? :high_heel: ????
:lipstick: ???? :boot: ???? :shirt: ????
:tshirt: ???? :necktie: ???? :womans_clothes: ????
:dress: ???? :running_shirt_with_sash: ???? :jeans: ????
:kimono: ???? :bikini: ???? :ribbon: ????
:tophat: ???? :crown: ???? :womans_hat: ????
:mans_shoe: ???? :closed_umbrella: ???? :briefcase: ????
:handbag: ???? :pouch: ???? :purse: ????
:eyeglasses: ???? :fishing_pole_and_fish: ???? :coffee:
:tea: ???? :sake: ???? :baby_bottle: ????
:beer: ???? :beers: ???? :cocktail: ????
:tropical_drink: ???? :wine_glass: ???? :fork_and_knife: ????
:pizza: ???? :hamburger: ???? :fries: ????
:poultry_leg: ???? :meat_on_bone: ???? :spaghetti: ????
:curry: ???? :fried_shrimp: ???? :bento: ????
:sushi: ???? :fish_cake: ???? :rice_ball: ????
:rice_cracker: ???? :rice: ???? :ramen: ????
:stew: ???? :oden: ???? :dango: ????
:egg: ???? :bread: ???? :doughnut: ????
:custard: ???? :icecream: ???? :ice_cream: ????
:shaved_ice: ???? :birthday: ???? :cake: ????
:cookie: ???? :chocolate_bar: ???? :candy: ????
:lollipop: ???? :honey_pot: ???? :apple: ????
:green_apple: ???? :tangerine: ???? :lemon: ????
:cherries: ???? :grapes: ???? :watermelon: ????
:strawberry: ???? :peach: ???? :melon: ????
:banana: ???? :pear: ???? :pineapple: ????
:sweet_potato: ???? :eggplant: ???? :tomato: ????
:corn: ????

地点

syntax preview syntax preview syntax preview
:house: ???? :house_with_garden: ???? :school: ????
:office: ???? :post_office: ???? :hospital: ????
:bank: ???? :convenience_store: ???? :love_hotel: ????
:hotel: ???? :wedding: ???? :church:
:department_store: ???? :european_post_office: ???? :city_sunrise: ????
:city_sunset: ???? :japanese_castle: ???? :european_castle: ????
:tent: :factory: ???? :tokyo_tower: ????
:japan: ???? :mount_fuji: ???? :sunrise_over_mountains: ????
:sunrise: ???? :stars: ???? :statue_of_liberty: ????
:bridge_at_night: ???? :carousel_horse: ???? :rainbow: ????
:ferris_wheel: ???? :fountain: :roller_coaster: ????
:ship: ???? :speedboat: ???? :boat:
:sailboat: :rowboat: ???? :anchor:
:rocket: ???? :airplane: ✈️ :helicopter: ????
:steam_locomotive: ???? :tram: ???? :mountain_railway: ????
:bike: ???? :aerial_tramway: ???? :suspension_railway: ????
:mountain_cableway: ???? :tractor: ???? :blue_car: ????
:oncoming_automobile: ???? :car: ???? :red_car: ????
:taxi: ???? :oncoming_taxi: ???? :articulated_lorry: ????
:bus: ???? :oncoming_bus: ???? :rotating_light: ????
:police_car: ???? :oncoming_police_car: ???? :fire_engine: ????
:ambulance: ???? :minibus: ???? :truck: ????
:train: ???? :station: ???? :train2: ????
:bullettrain_front: ???? :bullettrain_side: ???? :light_rail: ????
:monorail: ???? :railway_car: ???? :trolleybus: ????
:ticket: ???? :fuelpump: :vertical_traffic_light: ????
:traffic_light: ???? :warning: ⚠️ :construction: ????
:beginner: ???? :atm: ???? :slot_machine: ????
:busstop: ???? :barber: ???? :hotsprings: ♨️
:checkered_flag: ???? :crossed_flags: ???? :izakaya_lantern: ????
:moyai: ???? :circus_tent: ???? :performing_arts: ????
:round_pushpin: ???? :triangular_flag_on_post: ???? :jp: ????????
:kr: ???????? :cn: ???????? :us: ????????
:fr: ???????? :es: ???????? :it: ????????
:ru: ???????? :gb: ???????? :uk: ????????
:de: ????????

符号

syntax preview syntax preview syntax preview
:one: 1️⃣ :two: 2️⃣ :three: 3️⃣
:four: 4️⃣ :five: 5️⃣ :six: 6️⃣
:seven: 7️⃣ :eight: 8️⃣ :nine: 9️⃣
:keycap_ten: ???? :1234: ???? :zero: 0️⃣
:hash: #️⃣ :symbols: ???? :arrow_backward: ◀️
:arrow_down: ⬇️ :arrow_forward: ▶️ :arrow_left: ⬅️
:capital_abcd: ???? :abcd: ???? :abc: ????
:arrow_lower_left: ↙️ :arrow_lower_right: ↘️ :arrow_right: ➡️
:arrow_up: ⬆️ :arrow_upper_left: ↖️ :arrow_upper_right: ↗️
:arrow_double_down: :arrow_double_up: :arrow_down_small: ????
:arrow_heading_down: ⤵️ :arrow_heading_up: ⤴️ :leftwards_arrow_with_hook: ↩️
:arrow_right_hook: ↪️ :left_right_arrow: ↔️ :arrow_up_down: ↕️
:arrow_up_small: ???? :arrows_clockwise: ???? :arrows_counterclockwise: ????
:rewind: :fast_forward: :information_source: ℹ️
:ok: ???? :twisted_rightwards_arrows: ???? :repeat: ????
:repeat_one: ???? :new: ???? :top: ????
:up: ???? :cool: ???? :free: ????
:ng: ???? :cinema: ???? :koko: ????
:signal_strength: ???? :u5272: :u5272: :u5408: :u5408:
:u55b6: :u55b6: :u6307: :u6307: :u6708: :u6708:
:u6709: :u6709: :u6e80: ???? :u7121: :u7121:
:u7533: :u7533: :u7a7a: :u7a7a: :u7981: :u7981:
:sa: ????️ :restroom: ???? :mens: ????
:womens: ???? :baby_symbol: ???? :no_smoking: ????
:parking: ????️ :wheelchair: :metro: ????
:baggage_claim: ???? :accept: ???? :wc: ????
:potable_water: ???? :put_litter_in_its_place: ???? :secret: ㊙️
:congratulations: ㊗️ :m: Ⓜ️ :passport_control: ????
:left_luggage: ???? :customs: ???? :ideograph_advantage: ????
:cl: ???? :sos: ???? :id: ????
:no_entry_sign: ???? :underage: ???? :no_mobile_phones: ????
:do_not_litter: ???? :non-potable_water: ???? :no_bicycles: ????
:no_pedestrians: ???? :children_crossing: ???? :no_entry:
:eight_spoked_asterisk: ✳️ :eight_pointed_black_star: ✴️ :heart_decoration: ????
:vs: ???? :vibration_mode: ???? :mobile_phone_off: ????
:chart: ???? :currency_exchange: ???? :aries:
:taurus: :gemini: :cancer:
:leo: :virgo: :libra:
:scorpius: :sagittarius: :capricorn:
:aquarius: :pisces: :ophiuchus:
:six_pointed_star: ???? :negative_squared_cross_mark: :a: ????️
:b: ????️ :ab: ???? :o2: ????️
:diamond_shape_with_a_dot_inside: ???? :recycle: ♻️ :end: ????
:on: ???? :soon: ???? :clock1: ????
:clock130: ???? :clock10: ???? :clock1030: ????
:clock11: ???? :clock1130: ???? :clock12: ????
:clock1230: ???? :clock2: ???? :clock230: ????
:clock3: ???? :clock330: ???? :clock4: ????
:clock430: ???? :clock5: ???? :clock530: ????
:clock6: ???? :clock630: ???? :clock7: ????
:clock730: ???? :clock8: ???? :clock830: ????
:clock9: ???? :clock930: ???? :heavy_dollar_sign: ????
:copyright: ©️ :registered: ®️ :tm: ™️
:x: :heavy_exclamation_mark: :bangbang: ‼️
:interrobang: ⁉️ :o: :heavy_multiplication_x: ✖️
:heavy_plus_sign: :heavy_minus_sign: :heavy_division_sign:
:white_flower: ???? :100: ???? :heavy_check_mark: ✔️
:ballot_box_with_check: ☑️ :radio_button: ???? :link: ????
:curly_loop: :wavy_dash: 〰️ :part_alternation_mark: 〽️
:trident: ???? :black_large_square: :white_large_square:
:white_check_mark: :white_square_button: ???? :black_square_button: ????
:black_circle: :white_circle: :red_circle: ????
:large_blue_circle: ???? :large_blue_diamond: ???? :large_orange_diamond: ????
:small_blue_diamond: ???? :small_orange_diamond: ???? :small_red_triangle: ????
:small_red_triangle_down: ???? :shipit: :shipit:

改变字体,字号和颜色

<font face="字体" size="字号" color="颜色">这里是需要突出显示的内容</font>
<font face="黑体">我是黑体字</font>
<font face="微软雅黑">我是微软雅黑</font>
<font face="STCAIYUN">我是华文彩云</font>
<font color=red>我是红色</font>
<font color=#008000>我是绿色</font>
<font color=Blue>我是蓝色</font>
<font size=5>我是尺寸</font>
<font face="黑体" color=green size=5>我是黑体,绿色,尺寸为5</font>

这里是需要突出显示的内容
我是黑体字
我是微软雅黑
我是华文彩云
我是红色
我是绿色
我是蓝色
我是尺寸
我是黑体,绿色,尺寸为5

至此大部分语法已经介绍完.希望对大家有帮助

相关文章: