Markdown Syntax
about markdown syntax
markdown作为一种markup language, 由于可以使用css去self-defined样式, 所以syntax并不是固定的.
从Parser的层面上看, 可以将syntax分成三类.
-
一种是Native Parser所提供的syntax, 显示效果会因Parser而异, 如: Markdown Parser、Github Markdown Parser
-
另一种是Theme所提供的syntax, 由于Theme中会集成一些新的或修改原有的显示效果来满足自身的Theme, 所以会添加一定的css来实现需求, 因此显示效果会因Theme而异
-
最后一种是Editor所提供的syntax. 市面上有很多不一样的Editor, 但是根本目的只是方便我们去写一篇makedown格式的文章. 通过运用Editor所提供的syntax, 可以快速地完成一篇markdown文章. 通过Editor Parser的解析, 其显示效果是符合某一特定Native Parser, 而这个Native Parser是可以在Editor中设定的
下面仅对Freshman theme的syntax做记录
freshman theme markdown syntax
Heading
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
Body text
This is strong.
This is figure
This is emphasized.
53 = 125. Water is H2O.
The New York Times (That’s a citation).
Underline.
HTML and CSS are our tools.
Blockquotes
Justification: This species is listed as Extinct in the Wild, as all populations are still under captive management. The captive population in China has increased in recent years, and the possibility remains that free-ranging populations can be established some time in the near future. When that happens, its Red List status will need to be reassessed.
I follow up the quest. Despite of day and night and death and hell.
-- Idylls of the King, Tennyson
List Types
Ordered Lists
- Item one
- sub item one
- sub item two
- sub item three
- Item two
Unordered Lists
- Item one
- Item two
- Item three
Tables
Header1 | Header2 | Header3 |
---|---|---|
cell1 | cell2 | cell3 |
cell4 | cell5 | cell6 |
cell7 | cell8 | cell9 |
Kingdom | Phylum | Class | Order | Family |
---|---|---|---|---|
ANIMALIA | CHORDATA | MAMMALIA | CETARTIODACTYLA | CERVIDAE |
Code Snippets
Syntax highlighting via Pygments
highlight using triple backticks
a=1:10
for(i in a)
{
print(i)
}
you can use latex with double $$
<q> tag
here is a <q> q tag </q>
here is a q tag
references:
How To Build A Blog In Github
why build a blog in github
摘抄自阮一峰博客中的一段话
喜欢写Blog的人,会经历三个阶段。
- 第一阶段,刚接触Blog,觉得很新鲜,试着选择一个免费空间来写。
- 第二阶段,发现免费空间限制太多,就自己购买域名和空间,搭建独立博客。
- 第三阶段,觉得独立博客的管理太麻烦,最好在保留控制权的前提下,让别人来管,自己只负责写文章。
However, 我是直接skip了前两个阶段. As for me, 一个是懒,不想花时间去维护服务器,另一个是希望对站点有一定的控制权,也就是所谓的”第三阶段”
而那些喜欢折腾的人可以租台国外的服务器来玩, 这样不仅可以建站(blog仅仅只是一个static web, 还可以建有数据交互能力的web), 还可以搭”梯子”
how to build a blog in github
言归正传,how to build a blog in github? Obviously, 单靠个人的话, 需要编写和维护大量的代码. Luckily, github提供了一个叫github pages的功能, 可以让我们省去很多代码, 仅仅需要提供与文章相关的代码即可
这里涉及到了一个static web generator–Jekyll. 至于关于怎么使用jeklly生成static web相关的代码、怎么将这些代码完美的在github pages上跑等等问题, 都可以通过访问大神Alfred Sun的blog, 找到相应的答案, 毕竟那篇paper可以说全到能做一本相关的小册子了
这里仅记录一下自己搭键和使用过程中遇到的问题和常用命令
problems
-
如何让本地运行的Jekylly Server与线上Github Pages上的一样
安装github-pages库,建一个Gemfile,并添加以下代码:
source 'https://rubygems.org' require 'json' require 'open-uri' versions = JSON.parse(open('https://pages.github.com/versions.json').read) gem 'github-pages', versions['github-pages']
执行
bundle install
即可,详情参考:https://jekyllrb.com/docs/github-pages/ -
如何加入paginate
在Gemfile中加入一行:
gem "jekyll-paginate"
-
about bundler
Bundler是一个用于管理ruby库的管理工具,所有的ruby库都可以根据写的Gemfile来进行安装,同时还可以对ruby库进行更新
-
怎么根据一个jekyll theme设置成可运行的Jekyll Server
First,通过各种不同的姿势谷歌出自己心意的jekyll theme,其实也就那几个网站而已. Then,把心意的jekyll theme下载下来,在一个看得顺眼的目录下执行
jekyll new xxxx
来初始化一个站点的文件. Last, 将文件解压到xxx的目录下即可. 要注意是要将生成的index.md
去掉,使用解压出来的index.html
fews of useful commands
-
新建一个站点
jekyll new myblog
-
启动Jekyll服务
bundle exec jekyll serve
-
访问启动的服务,看效果
# Now browse to http://localhost:4000
references:
- https://www.ruby-lang.org/en/documentation/installation/
- http://jmcglone.com/guides/github-pages/
- http://www.ruanyifeng.com/blog/2012/08/blogging_with_jekyll.html
- https://alfred-sun.github.io/blog/2014/12/05/github-pages/
- https://learn.siteleaf.com/themes/gem-based-themes/
- http://themes.jekyllrc.org/freshman21/
- http://www.ruanyifeng.com/blog/2012/08/blogging_with_jekyll.html