Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 794 Bytes

index.md

File metadata and controls

57 lines (37 loc) · 794 Bytes
title layout
Welcome
default

Hello, Minima!

Welcome to markdown madness. We hope you really enjoy using good old text for writing.

Just type some markdown and jekyll will automatically turn it into hypertext markup language (HTML). Simple as that.

Quote goes here.

A list:

  • One
  • Two
  • Three

Some inline code to_html and a preformatted code block:

Kramdown::Document.new( 'Hello Markdown!' ).to_html

with code highlighting:

# The Greeter class

class Greeter
  def initialize(name)
    @name = name.capitalize
  end

  def salute
    puts "Hello #{@name}!"
  end
end

# Create a new object
g = Greeter.new("world")

# Output "Hello World!"
g.salute

Or try

Heading 1

Heading 2

Heading 3