😀

テスト記事

2024/04/19に公開

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

  1. First item
  2. Second item
  3. Third item

Here's a link to Google.

And here's an image:

alt text for the 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