😀
テスト記事
Sample Markdown Text
Introduction
Markdown allows you to write using an easy-to-read, easy-to-write plain text format, which then converts to structurally valid HTML. Here's a quick demonstration of some of the basic features
Formatting Text
You can make text bold or italic.
- To bold text, wrap it in two asterisks or two underscores.
- To italicize text, wrap it in a single asterisk or a single underscore.
Lists
Unordered List
- Item 1
- Item 2
- Item 2a
- Item 2b
Ordered List
- First item
- Second item
- Third item
Links and Images
Here's a link to Google.
And here's an image:
Code
You can add inline code
by wrapping text in backticks.
For code blocks, you can use three backticks or indent lines with four spaces:
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
Discussion