# 为什么要写这篇文章? 一篇好的文章,除了内容上乘、言之有物外,排版也很重要。 虽说酒香不怕巷子深,但是对于文章而言,如果排版一团糟,会让人根本没有阅读的欲望。 那么Steemit都支持那些排版方式呢? ### 1. 使用编辑器 steemit的发表页面有一个内置的编辑器,支持设置标题、斜体、粗体、添加链接、插入图片等功能。 这个编辑器是把用户的设置转换成HTML代码的。 但是以我的使用体验,这个非常不方便,排版费时费力还不美观。 ### 2. 直接插入HTML 另外一种方法是在编辑页面中,直接插入HTML代码。 比如 一下代码产生一个列表: ```` <ol> <li>好好学习</li> <li>天天向上</li> </ol> ```` 效果如下: <ol> <li>好好学习</li> <li>天天向上</li> </ol> 好吧,看起来还不错。至少我们又有一种办法排版。 但是,对于熟悉HTML语法的用户,敲入一堆的`<`和`>`以及一堆的标签,有没有感到厌烦? 对于不熟悉HTML语法的用户,更是犹如面对一堆天书。 ### 3. 使用Markdown 既然编辑器和插入HTML都不那么理想,那有没有既功能强大,又便于输入的排版方法呢? 当然有啦,这就是本文要说的,steemit支持的第三种排版方式:**使用Markdown!** # Markdown是什么? Markdown是什么呢?引用[Mastering Markdown](https://guides.github.com/features/mastering-markdown/)中的介绍: >Markdown is a way to style text on the web. You control the display of the document; formatting words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like `# `or `*`. 简单的说,Markdown就是控制网络上文本样式的一种方式。控制文档如何显示,包括但不限于:设置文字粗体或斜体格式、添加图像、创建列表。通常,只需在正常的文本中加入一些非字母字符,比如`# `or `*`. # Markdown语法 说了这么多,你是不是有些迫不及待的想了解如何使用Markdown啦? Let's go! 下边会直接列出一些大家感兴趣的内容。 **** * ### 高端技能: 插入图像 看别人的文章图文并茂,羡慕否?掌握了插图技能,你也可以。 ``` 语法: ![提示文字](图片URL) 例子: ![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png) ``` ![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png) * ### 高端技能: 插入链接 有时候需要在文章中插入一些链接,比如要推荐一些文章或者说明你引用的文章的出处等。 ``` 语法: [提示文字](链接URL) 例子: [Steemit 思考: 自媒体、大V、明星来袭,小作者该何去何从?](https://steemit.com/steemit/@oflyhigh/steemit-v) ``` [Steemit 思考: 自媒体、大V、明星来袭,小作者该何去何从?](https://steemit.com/steemit/@oflyhigh/steemit-v) * ### 高端技能三: 使用列表 需要说明一些步骤之类的,使用列表看起来会更清晰明朗。 列表分为无序列表和有序列表。 无序列表(以及子列表项): ``` * Item 1 * Item 2 * Item 2a * Item 2b ``` * Item 1 * Item 2 * Item 2a * Item 2b 有序列表(以及有序列表无序列表混排): ``` 1. Item 1 2. Item 2 * Item 2a * Item 2b ``` 1. Item 1 2. Item 2 * Item 2a * Item 2b * ### 高端技能: 使用标题 ``` # 大号标题 ## 二号标题 ###### 六号标题 ``` # 大号标题 ## 二号标题 ###### 六号标题 * ### 高端技能:文字格式 ``` 这是一段普通文字,请关注 @oflyhigh *这是一段斜体文字,请关注 @oflyhigh* **这是一段粗体文字,请关注 @oflyhigh** _这是一段斜体文字,请关注 @oflyhigh_ __这是一段粗体文字,请关注 @oflyhigh__ **这是_粗体中嵌入了斜体_的混排文字,请关注 @oflyhigh** ``` 这是一段普通文字,请关注 @oflyhigh *这是一段斜体文字,请关注 @oflyhigh* **这是一段粗体文字,请关注 @oflyhigh** _这是一段斜体文字,请关注 @oflyhigh_ __这是一段粗体文字,请关注 @oflyhigh__ **这是_粗体中嵌入了斜体_的混排文字,请关注 @oflyhigh** * ### 高端技能:使用引用 使用引用其实就是在引用的段落或者每一行前加一个`>` ``` @oflyhigh 在[这篇文章](https://steemit.com/steemit/@oflyhigh/steemit-v)曾经说过: > 赚钱不是steemit的主题,社交才是。 他还说: > 发个帖子,顺便推销一下自己也是无可厚非的,这样不算厚脸皮的。 ``` @oflyhigh 在[这篇文章](https://steemit.com/steemit/@oflyhigh/steemit-v)曾经说过: > 赚钱不是steemit的主题,社交才是。 他还说: > 发个帖子,顺便推销一下自己也是无可厚非的,这样不算厚脸皮的。 * ### 高端技能:插入代码 在正常文本中嵌入代码: ``` PHP是世界上最好的语言,`<? echo ("Hello World!"); ?>` 一个世界你好诞生了。 ``` PHP是世界上最好的语言,`<? echo ("Hello World!"); ?>` 一个世界你好诞生了。 插入一整段代码,或者让文本保存原样: ```` ``` PHP是世界上最好的语言,`<? echo ("Hello World!"); ?>` 一个世界你好诞生了。 ``` ```` 效果如下: ``` PHP是世界上最好的语言,`<? echo ("Hello World!"); ?>` 一个世界你好诞生了。 ``` * ### 高端技能:使用表格 [The popular tags on steemit.com (with Chinese translation) /steemit流行标签附中文翻译](https://steemit.com/cn/@oflyhigh/the-popular-tags-on-steemit-com-with-chinese-translation-steemit) 以上文章使用了表格进行排版,把热门流行标签的中英文对比放一起,更为直观。 ``` steemit流行标签附中文翻译 tags|标签 ------------|------------ steemit|steemit photography|摄影 life|生活 introduceyourself|自我介绍 mathematics|数学 ``` steemit流行标签附中文翻译 tags|标签 ------------|------------ steemit|steemit photography|摄影 life|生活 introduceyourself|自我介绍 mathematics|数学 * ### 高端技能:插入分割线 `****` **** # 进一步的学习和了解 你或许会问, @oflyhigh 你咋知道这么多功能呢? 其实我知道的只是九牛一毛呀,如果想了解更多,我们一起来学习吧! 有些Markdown的语法在steemit支持的不是很好,所以除了多学还要多摸索哦。 [Markdown官网](http://daringfireball.net/projects/markdown/) [Mastering Markdown](https://guides.github.com/features/mastering-markdown/) [Writing on GitHub / Basic writing and formatting syntax ](https://help.github.com/articles/basic-writing-and-formatting-syntax) >我是 @oflyhigh 因为国内网络的原因,一直未能玩转各类社交媒体,终日混迹于QQ空间和微信朋友圈。 希望在这里结识更多的朋友。
post_id | 411,241 |
---|---|
author | oflyhigh |
permlink | markdown |
category | cn |
json_metadata | "{"users": ["oflyhigh"], "links": ["https://guides.github.com/features/mastering-markdown/", "https://steemit.com/cn/@oflyhigh/the-popular-tags-on-steemit-com-with-chinese-translation-steemit"], "tags": ["cn", "steemit", "markdown", "format", "writing"]}" |
created | 2016-08-02 14:30:21 |
last_update | 2016-08-02 14:36:30 |
depth | 0 |
children | 54 |
net_rshares | 5,852,502,685,968 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.197 SBD |
curator_payout_value | 2.476 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 4,010 |
author_reputation | 1,148,153,621,496,884 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 5,404,222,324,110 | 100% | ||
jchch | 0 | 89,148,897,265 | 100% | ||
jademont | 0 | 5,990,700,559 | 100% | ||
coar | 0 | 1,558,919,836 | 100% | ||
imyao | 0 | 2,562,106,571 | 100% | ||
hulu | 0 | 305,625,024 | 100% | ||
zjhzwgl | 0 | 5,633,679,587 | 100% | ||
aidar88 | 0 | 143,734,176 | 100% | ||
auxon | 0 | 1,031,391,165 | 100% | ||
toxonaut | 0 | 30,933,323,028 | 100% | ||
melinasanner | 0 | 79,574,780 | 100% | ||
jenniferchen | 0 | 62,936,836 | 100% | ||
missclara | 0 | 60,563,682 | 100% | ||
timber | 0 | 65,131,259 | 100% | ||
williamger | 0 | 67,415,048 | 100% | ||
rayphu | 0 | 3,091,554,370 | 100% | ||
lemooljiang | 0 | 3,063,256,654 | 100% | ||
cire81 | 0 | 2,725,768 | 100% | ||
ace108 | 0 | 146,972,307 | 100% | ||
noodles.pan | 0 | 15,307,604,070 | 100% | ||
ooak | 0 | 18,447,104,972 | 100% | ||
auxonoxua | 0 | 5,155,057 | 100% | ||
lief | 0 | 2,003,914,331 | 100% | ||
laoyao | 0 | 15,662,471,414 | 100% | ||
myfirst | 0 | 2,246,442,254 | 100% | ||
somebody | 0 | 213,353,039,834 | 100% | ||
feelapi | 0 | 839,973,215 | 100% | ||
littleboo | 0 | 176,795,698 | 100% | ||
midnightoil | 0 | 20,003,527,337 | 100% | ||
lianbing | 0 | 4,462,063,794 | 100% | ||
oflyhigh | 0 | 460,342,495 | 100% | ||
adoal | 0 | 1,297,202,535 | 100% | ||
sirwinchester | 0 | 4,222,689,044 | 100% | ||
xiaokongcom | 0 | 3,622,644,676 | 100% | ||
tangjian | 0 | 268,753,200 | 100% | ||
xianjun | 0 | 1,454,772,016 | 100% | ||
etccrap | 0 | 1,228,746 | 0.1% | ||
koolaidssss | 0 | 1,222,934 | 0.1% | ||
jessejamesrock | 0 | 1,240,735 | 0.1% | ||
microluck | 0 | 239,620,640 | 100% | ||
linvictor88 | 0 | 98,624,806 | 100% | ||
almost-anonymous | 0 | 48,500,169 | 100% | ||
berier | 0 | 49,423,736 | 100% | ||
isonny | 0 | 57,496,235 | 100% | ||
josegarcia | 0 | 0 | 100% | ||
krischy | 0 | 0 | 100% | ||
bricker | 0 | 0 | 100% | ||
jiangchen | 0 | 0 | 100% | ||
kikima | 0 | 0 | 100% | ||
sen821 | 0 | 0 | 100% | ||
frank2886 | 0 | 0 | 100% | ||
cathysiub | 0 | 0 | 100% | ||
alanzheng | 0 | 0 | 100% | ||
brysj22952 | 0 | 0 | 100% | ||
windowglass | 0 | 0 | 100% | ||
chann | 0 | 0 | 100% | ||
wilburm | 0 | 0 | 100% | ||
angelina6688 | 0 | 0 | 100% | ||
jerryzhang | 0 | 0 | 100% | ||
wonder1 | 0 | 0 | 100% | ||
mersio010 | 0 | 0 | 100% | ||
duanjun | 0 | 0 | 100% | ||
xiaomim123 | 0 | 0 | 100% | ||
xtea | 0 | 0 | 100% | ||
supergirls | 0 | 0 | 100% | ||
lele2018 | 0 | 0 | 100% | ||
chen4212586 | 0 | 0 | 100% | ||
crowflew | 0 | 0 | 100% | ||
bluelion | 0 | 0 | 100% | ||
wongguisheng | 0 | 0 | 100% | ||
noty | 0 | 0 | 100% | ||
zhangwenqi | 0 | 0 | 100% | ||
buzhi | 0 | 0 | 100% | ||
melflower | 0 | 0 | 100% | ||
coways | 0 | 0 | 100% |
Hi! This post has a <a href="https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests">Flesch-Kincaid</a> grade level of 5.7 and reading ease of 95%. This puts the writing level on par with Jane Austen and JK Rowling.
post_id | 411,245 |
---|---|
author | isaac.asimov |
permlink | re-markdown-20160802t143035 |
category | cn |
json_metadata | {} |
created | 2016-08-02 14:30:36 |
last_update | 2016-08-02 14:30:36 |
depth | 1 |
children | 0 |
net_rshares | -12,266,879 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 231 |
author_reputation | -982,250,417,825 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah39 | 0 | -4,513,628 | -20% | ||
antispam | 0 | -7,753,251 | -1% |
Nice @oflyhigh Shot you an Upvote :)
post_id | 411,254 |
---|---|
author | jessejamesrock |
permlink | markdown |
category | cn |
json_metadata | {} |
created | 2016-08-02 14:31:12 |
last_update | 2016-08-02 14:31:12 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 38 |
author_reputation | -833,894,503,225 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
Nice @oflyhigh Shot you an Upvote :)
post_id | 411,313 |
---|---|
author | koolaidssss |
permlink | markdown |
category | cn |
json_metadata | {} |
created | 2016-08-02 14:35:36 |
last_update | 2016-08-02 14:35:36 |
depth | 1 |
children | 0 |
net_rshares | -4,503,159 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 38 |
author_reputation | -568,125,711,478 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah55 | 0 | -4,503,159 | -20% |
Nice @oflyhigh Shot you an Upvote :)
post_id | 411,334 |
---|---|
author | etccrap |
permlink | markdown |
category | cn |
json_metadata | {} |
created | 2016-08-02 14:37:06 |
last_update | 2016-08-02 14:37:06 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 38 |
author_reputation | -657,321,409,405 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
supergirls | 0 | 0 | 100% |
我习惯用WordPress先写好,再提交至Steemit, 我正在写一个插件wordpress submit to steemit 的button
post_id | 411,447 |
---|---|
author | myfirst |
permlink | re-oflyhigh-markdown-20160802t144325838z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:43:27 |
last_update | 2016-08-02 14:43:27 |
depth | 1 |
children | 5 |
net_rshares | 263,483,530 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 74 |
author_reputation | 188,606,022,151,223 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tangjian | 0 | 263,483,530 | 100% |
好主意
post_id | 411,521 |
---|---|
author | oflyhigh |
permlink | re-myfirst-re-oflyhigh-markdown-20160802t144809298z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:48:09 |
last_update | 2016-08-02 14:48:09 |
depth | 2 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 3 |
author_reputation | 1,148,153,621,496,884 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
我是查看WordPress发布后的html源代表,再在线转到markdown语法,再贴到steemit上,非常干净清爽。
post_id | 6,743,979 |
---|---|
author | tumutanzi |
permlink | re-myfirst-re-oflyhigh-markdown-20170710t123240745z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-07-10 12:32:39 |
last_update | 2017-07-10 12:32:39 |
depth | 2 |
children | 2 |
net_rshares | 0 |
last_payout | 2017-07-17 12:32:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 60 |
author_reputation | 138,038,426,460,288 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
frank2886 | 0 | 0 | 100% |
怎么操作
post_id | 30,341,949 |
---|---|
author | lifa |
permlink | re-tumutanzi-re-myfirst-re-oflyhigh-markdown-20180204t131326012z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-02-04 13:13:30 |
last_update | 2018-02-04 13:13:30 |
depth | 3 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-02-11 13:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 4 |
author_reputation | 3,696,389,924 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
还有这个技能,这个比较好,刚才看了Markdown编辑器,那些使用技巧看到头都大了,还是直接在线转换比较好。
post_id | 45,121,941 |
---|---|
author | yigujin |
permlink | re-tumutanzi-re-myfirst-re-oflyhigh-markdown-20180424t063355265z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-24 06:32:45 |
last_update | 2018-04-24 06:32:45 |
depth | 3 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-05-01 06:32:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 54 |
author_reputation | 3,388,441,561 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
好办法。
post_id | 7,507,440 |
---|---|
author | shengjian |
permlink | re-myfirst-re-oflyhigh-markdown-20170718t050817997z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-07-18 05:08:18 |
last_update | 2017-07-18 05:08:18 |
depth | 2 |
children | 0 |
net_rshares | 0 |
last_payout | 2017-07-25 05:08:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 4 |
author_reputation | 314,613,806,869 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
好帖!比我在百度找到的介绍 MarkDown 语法的文章更专业!
post_id | 411,493 |
---|---|
author | imyao |
permlink | re-oflyhigh-markdown-20160802t144611240z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:45:54 |
last_update | 2016-08-02 14:52:45 |
depth | 1 |
children | 1 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 32 |
author_reputation | 2,782,559,402,207 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
我也是看了一些文章,觉得很乱 另外一些功能这里还不支持,所以就自己整理一下。 边学,边玩边分享
post_id | 411,539 |
---|---|
author | oflyhigh |
permlink | re-imyao-re-oflyhigh-markdown-20160802t144909596z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:49:09 |
last_update | 2016-08-02 14:49:09 |
depth | 2 |
children | 0 |
net_rshares | 2,562,106,571 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 47 |
author_reputation | 1,148,153,621,496,884 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
imyao | 0 | 2,562,106,571 | 100% |
讲排版的文章拍版就是好! 重温了一下,又学习了不少。
post_id | 411,511 |
---|---|
author | somebody |
permlink | re-oflyhigh-markdown-20160802t144717299z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:47:18 |
last_update | 2016-08-02 14:47:18 |
depth | 1 |
children | 1 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 27 |
author_reputation | 6,041,031,650,451 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
哈哈,见笑啦,因为要插入示例,所以感觉还是很乱的
post_id | 411,552 |
---|---|
author | oflyhigh |
permlink | re-somebody-re-oflyhigh-markdown-20160802t145000956z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:50:00 |
last_update | 2016-08-02 14:50:00 |
depth | 2 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 24 |
author_reputation | 1,148,153,621,496,884 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
html就蛮好用的,有点网站经验的人就懂点。
post_id | 411,532 |
---|---|
author | lemooljiang |
permlink | re-oflyhigh-markdown-20160802t144841769z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:48:48 |
last_update | 2016-08-02 14:48:48 |
depth | 1 |
children | 1 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 22 |
author_reputation | 264,376,118,574,909 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
但是语法规则比较麻烦一些,一般人搞不明白。
post_id | 6,743,919 |
---|---|
author | tumutanzi |
permlink | re-lemooljiang-re-oflyhigh-markdown-20170710t123149554z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-07-10 12:31:48 |
last_update | 2017-07-10 12:31:48 |
depth | 2 |
children | 0 |
net_rshares | 0 |
last_payout | 2017-07-17 12:31:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 21 |
author_reputation | 138,038,426,460,288 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
太强大了!我都是直接用html的。哪个更好?有什么讲究吗?
post_id | 411,713 |
---|---|
author | xianjun |
permlink | re-oflyhigh-markdown-20160802t145902501z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 14:59:15 |
last_update | 2016-08-02 14:59:15 |
depth | 1 |
children | 1 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 29 |
author_reputation | 4,265,795,188,015 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
个人觉得dreamweaver最强大,所见即所得,边写边看。
post_id | 411,825 |
---|---|
author | lemooljiang |
permlink | re-xianjun-re-oflyhigh-markdown-20160802t150649099z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 15:06:54 |
last_update | 2016-08-02 15:07:09 |
depth | 2 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 30 |
author_reputation | 264,376,118,574,909 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
太复杂了
post_id | 411,819 |
---|---|
author | zjhzwgl |
permlink | re-oflyhigh-markdown-20160802t150634835z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 15:06:39 |
last_update | 2016-08-02 15:06:39 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 4 |
author_reputation | 2,137,962,089,502 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
不愧是奶普大人! *还没发过文章呢,先来学习学习。*
post_id | 411,842 |
---|---|
author | midnightoil |
permlink | re-oflyhigh-markdown-20160802t150738455z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 15:07:51 |
last_update | 2016-08-02 15:07:51 |
depth | 1 |
children | 1 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 26 |
author_reputation | 97,723,722,095 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
上午去苦力那参观啦 等你们旅游回来我们聚聚
post_id | 423,229 |
---|---|
author | oflyhigh |
permlink | re-midnightoil-re-oflyhigh-markdown-20160803t053538951z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-03 05:35:39 |
last_update | 2016-08-03 05:35:39 |
depth | 2 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 21 |
author_reputation | 1,148,153,621,496,884 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
翻译不容易,有心。有辛苦. 0.01是少了点,也就这么多了
post_id | 411,969 |
---|---|
author | noodles.pan |
permlink | re-oflyhigh-markdown-20160802t151613443z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-02 15:16:03 |
last_update | 2016-08-02 15:16:03 |
depth | 1 |
children | 0 |
net_rshares | 2,195,386,748 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 29 |
author_reputation | 1,311,528,637,009 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
myfirst | 0 | 2,195,386,748 | 100% |
这个必须顶啊,很有用!
post_id | 420,463 |
---|---|
author | linvictor88 |
permlink | re-oflyhigh-markdown-20160803t010615650z |
category | cn |
json_metadata | "{"tags": ["cn"]}" |
created | 2016-08-03 01:06:15 |
last_update | 2016-08-03 01:06:15 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 11 |
author_reputation | 113,355,982,227 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
如看懂英文,可参考: https://guides.github.com/features/mastering-markdown/
post_id | 424,036 |
---|---|
author | ace108 |
permlink | re-oflyhigh-markdown-20160803t065201349z |
category | cn |
json_metadata | "{"links": ["https://guides.github.com/features/mastering-markdown/"], "tags": ["cn"]}" |
created | 2016-08-03 06:52:06 |
last_update | 2016-08-03 06:52:06 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2016-09-02 08:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 65 |
author_reputation | 599,484,250,318,942 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
支持支持,一年前的牛贴
post_id | 9,158,053 |
---|---|
author | shenchensucc |
permlink | re-oflyhigh-markdown-20170804t032843312z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-08-04 03:29:21 |
last_update | 2017-08-04 03:29:51 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2017-08-11 03:29:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 11 |
author_reputation | 349,408,393,439,406 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
超棒!
post_id | 15,097,913 |
---|---|
author | bricker |
permlink | re-oflyhigh-markdown-20171012t004922996z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-10-12 00:49:21 |
last_update | 2017-10-12 00:49:21 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2017-10-19 00:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 3 |
author_reputation | 31,948,056,546 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
不错。我正想翻译一个Markdown的用法呢。谁知道怎么收藏文章?比如这一篇文章。
post_id | 15,114,504 |
---|---|
author | brysj22952 |
permlink | re-oflyhigh-markdown-20171012t060953061z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-10-12 06:11:15 |
last_update | 2017-10-12 06:12:42 |
depth | 1 |
children | 0 |
net_rshares | 777,588,550 |
last_payout | 2017-10-19 06:11:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 41 |
author_reputation | 204,696,827,180 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brysj22952 | 0 | 777,588,550 | 100% |
新人学习第一步。赞!
post_id | 15,643,882 |
---|---|
author | wilburm |
permlink | re-oflyhigh-markdown-20171019t142729671z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-10-19 14:27:33 |
last_update | 2017-10-19 14:27:33 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2017-10-26 14:27:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 10 |
author_reputation | 1,116,291,911,150 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
学习了,原来我的文本有点不整齐是有原因的。
post_id | 15,959,431 |
---|---|
author | angelina6688 |
permlink | re-oflyhigh-markdown-20171024t020312023z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2017-10-24 02:03:24 |
last_update | 2017-10-24 02:03:24 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2017-10-31 02:03:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 21 |
author_reputation | 233,226,437,087,120 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
可不可以搞成公众号或头条更好用的编辑?
post_id | 23,121,699 |
---|---|
author | aiuoe |
permlink | re-oflyhigh-markdown-20180102t142221600z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-01-02 14:21:03 |
last_update | 2018-01-02 14:21:03 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-01-09 14:21:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 19 |
author_reputation | 0 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
新人干货
post_id | 24,352,120 |
---|---|
author | sierrashiyu |
permlink | re-oflyhigh-markdown-20180108t121751669z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-01-08 12:17:51 |
last_update | 2018-01-08 12:17:51 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-01-15 12:17:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 4 |
author_reputation | 1,015,468,992 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
这个专业性是不是强了点。。。
post_id | 24,696,640 |
---|---|
author | stackup |
permlink | re-oflyhigh-markdown-20180110t021621044z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-01-10 02:16:33 |
last_update | 2018-01-10 02:16:33 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-01-17 02:16:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 14 |
author_reputation | 8,731,947,403 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
特别特别棒的干货!我是新人正在学习中!!!!O(∩_∩)O谢谢
post_id | 26,351,826 |
---|---|
author | kikima |
permlink | re-oflyhigh-markdown-20180118t033941175z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-01-18 03:39:42 |
last_update | 2018-01-18 03:39:42 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-01-25 03:39:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 31 |
author_reputation | 686,541,297,822 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
感谢oflyhigh的这篇文章,对我这个新手来说,收益不少!
post_id | 26,789,213 |
---|---|
author | tony19890214 |
permlink | re-oflyhigh-markdown-20180120t082536651z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-01-20 08:34:42 |
last_update | 2018-01-20 08:34:42 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-01-27 08:34:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 30 |
author_reputation | 2,127,050,386 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
请问一下怎么发视频啊
post_id | 28,376,340 |
---|---|
author | xtea |
permlink | re-oflyhigh-markdown-20180127t040201678z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-01-27 04:01:48 |
last_update | 2018-01-27 04:01:48 |
depth | 1 |
children | 1 |
net_rshares | 0 |
last_payout | 2018-02-03 04:01:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 10 |
author_reputation | 0 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
我了解下来,现在是发不了音视频的,因为这样会导致区块太大。不确定对不对,或许我也是没找到方法,欢迎指正交流!
post_id | 32,491,228 |
---|---|
author | kevinkmf |
permlink | re-xtea-re-oflyhigh-markdown-20180214t021049217z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-02-14 02:11:27 |
last_update | 2018-02-14 02:11:27 |
depth | 2 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-02-21 02:11:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 54 |
author_reputation | 0 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
    还有一个,我觉得很实用的,首行缩进:半角&*ensp;去掉中间的星号,不要忘记了最后的分号;就可以愉快的空格和首行缩进了。 >[" "]
post_id | 28,637,068 |
---|---|
author | supergirls |
permlink | re-oflyhigh-markdown-20180128t073103096z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-01-28 07:31:06 |
last_update | 2018-01-28 07:31:06 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-02-04 07:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 97 |
author_reputation | 0 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
图片怎么居中呀?
post_id | 39,065,246 |
---|---|
author | djlu |
permlink | re-oflyhigh-markdown-20180317t121436001z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-03-17 12:14:42 |
last_update | 2018-03-17 12:14:42 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-03-24 12:14:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 8 |
author_reputation | 0 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
o哥,这篇是我觉得介绍markdown最棒的帖子,能否授权收到 steem 指南里(开头结尾会略做改动)?
post_id | 40,792,250 |
---|---|
author | dapeng |
permlink | re-oflyhigh-markdown-20180327t132433307z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-03-27 13:24:36 |
last_update | 2018-03-27 13:24:36 |
depth | 1 |
children | 2 |
net_rshares | 0 |
last_payout | 2018-04-03 13:24:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 53 |
author_reputation | 64,235,894,740,263 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
随便用
post_id | 41,504,925 |
---|---|
author | oflyhigh |
permlink | re-dapeng-re-oflyhigh-markdown-20180401t011851141z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-01 01:18:54 |
last_update | 2018-04-01 01:18:54 |
depth | 2 |
children | 1 |
net_rshares | 0 |
last_payout | 2018-04-08 01:18:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 3 |
author_reputation | 1,148,153,621,496,884 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
谢o哥!
post_id | 41,598,612 |
---|---|
author | dapeng |
permlink | re-oflyhigh-re-dapeng-re-oflyhigh-markdown-20180401t170818302z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-01 17:08:18 |
last_update | 2018-04-01 17:08:18 |
depth | 3 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-04-08 17:08:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 4 |
author_reputation | 64,235,894,740,263 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
写的非常详细的markdown教程,我们希望能够把你的文章收录进正在编撰的《steem指南》一书中,希望能够得到你的授权。 你可以在github了解我们的项目: https://github.com/pzhaonet/steem-guides
post_id | 41,501,053 |
---|---|
author | maiyude |
permlink | re-oflyhigh-markdown-20180401t003129490z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "links": ["https://github.com/pzhaonet/steem-guides"], "tags": ["cn"]}" |
created | 2018-04-01 00:31:42 |
last_update | 2018-04-01 00:31:42 |
depth | 1 |
children | 2 |
net_rshares | 0 |
last_payout | 2018-04-08 00:31:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 121 |
author_reputation | 21,821,715,475,664 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
随便用啦
post_id | 41,504,955 |
---|---|
author | oflyhigh |
permlink | re-maiyude-re-oflyhigh-markdown-20180401t011917429z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-01 01:19:18 |
last_update | 2018-04-01 01:19:18 |
depth | 2 |
children | 1 |
net_rshares | 0 |
last_payout | 2018-04-08 01:19:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 4 |
author_reputation | 1,148,153,621,496,884 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
谢谢!
post_id | 41,505,264 |
---|---|
author | maiyude |
permlink | re-oflyhigh-re-maiyude-re-oflyhigh-markdown-20180401t012247915z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-01 01:23:03 |
last_update | 2018-04-01 01:23:03 |
depth | 3 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-04-08 01:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 3 |
author_reputation | 21,821,715,475,664 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
本文已收进steemh.org
post_id | 41,700,004 |
---|---|
author | maiyude |
permlink | re-oflyhigh-markdown-20180402t121758944z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-02 12:18:00 |
last_update | 2018-04-02 12:18:00 |
depth | 1 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-04-09 12:18:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 15 |
author_reputation | 21,821,715,475,664 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
请问,我刚刚按照你的方法试了,感觉没用,我看你文本框里有左右上下的箭头,那个是什么啊,在哪里可以找到。
post_id | 43,200,095 |
---|---|
author | abcallen |
permlink | re-oflyhigh-markdown-20180412t064139329z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-12 06:43:48 |
last_update | 2018-04-12 06:43:48 |
depth | 1 |
children | 8 |
net_rshares | 0 |
last_payout | 2018-04-19 06:43:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 51 |
author_reputation | 217,659,575,471,113 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
你说的是他插入代码框的方法吧? 用 ```前后 括起来就可以了
post_id | 43,202,677 |
---|---|
author | windowglass |
permlink | re-abcallen-re-oflyhigh-markdown-20180412t070631953z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-12 07:06:33 |
last_update | 2018-04-12 07:06:33 |
depth | 2 |
children | 7 |
net_rshares | 0 |
last_payout | 2018-04-19 07:06:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 31 |
author_reputation | 61,501,950,427,521 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
我试过了啊,结果并不理想,比如粗体加斜体的 [ *好像_没用],按照这个方法,但是我看了他的方法是降价,文本格式里也有,但是点开输入后却没有预览框。
post_id | 43,203,871 |
---|---|
author | abcallen |
permlink | re-windowglass-re-abcallen-re-oflyhigh-markdown-20180412t071541973z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-12 07:17:42 |
last_update | 2018-04-12 07:18:27 |
depth | 3 |
children | 5 |
net_rshares | 0 |
last_payout | 2018-04-19 07:17:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 76 |
author_reputation | 217,659,575,471,113 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |
我弄白了他这个是怎么弄呢,他这个还是要进入编辑器里的代码块里也就是降价,才能达到这种效果,当你在降价状态时输入代码,是不会有预览框出现的,当你取消降价还原会原来的状态时那种带有上下左右箭头的预览框才会出现。
post_id | 43,205,069 |
---|---|
author | abcallen |
permlink | re-windowglass-re-abcallen-re-oflyhigh-markdown-20180412t072556611z |
category | cn |
json_metadata | "{"app": "steemit/0.1", "tags": ["cn"]}" |
created | 2018-04-12 07:27:57 |
last_update | 2018-04-12 07:27:57 |
depth | 3 |
children | 0 |
net_rshares | 0 |
last_payout | 2018-04-19 07:27:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 SBD |
curator_payout_value | 0.000 SBD |
pending_payout_value | 0.000 SBD |
promoted | 0.000 SBD |
body_length | 103 |
author_reputation | 217,659,575,471,113 |
root_title | 使用Markdown来让你的文章更易于阅读、更美观 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 SBD |
percent_steem_dollars | 10,000 |