记录无法归类的小问题及解决方法
-
Markdown中给图片增加标题
[如下代码]{http://stackoverflow.com/questions/19331362/using-an-image-caption-in-markdown-jekyll}
![](path_to_image) *image_caption*
<p> <img src="path_to_image" alt> <em>image_caption</em> </p>
-
Markdown table
Default aligned Left aligned Center aligned Right aligned First body part Second cell Third cell fourth cell Second line foo strong baz Third line quux baz bar Second body 2 line Footer row |--- | Default aligned | Left aligned | Center aligned | Right aligned |-|:-|:-:|-: | First body part | Second cell | Third cell | fourth cell | Second line |foo | **strong** | baz | Third line |quux | baz | bar |--- | Second body | 2 line |=== | Footer row
-
Fence codes
- Do step 1.
-
Now do this:
def print_hi(name) puts "Hi, #{name}" end print_hi('Tom') #=> prints 'Hi, Tom' to STDOUT.
- Now you can do this.
- The key is to indent your fenced code block lined up with the list item.
- Also need to put a separating newline above and below the fenced block.