onceclick Quick notes for my learning path :)

Start my learning path

2017-01-01
onceclick
Building blog with github pages

This article aims to be a comprehensive guide to Jekyll. We’ll cover topics such as getting your site up and running, creating and managing your content, customizing the way your site works and looks, deploying to various environments, and give you some advice on participating in the future development of Jekyll itself. Learning Path

Jekyll?

What is Jekyll?

Jekyll is a simple, blog-aware, static site generator using Markdown & Liquid.

Quick start

# Install Jekyll and Bundler gems through RubyGems
gem install jekyll bundler

# Create a new Jekyll site at ./myblog
jekyll new myblog

# Change into your new directory
cd myblog

# Build the site on the preview server
bundle exec jekyll serve

# Now browse to http://localhost:4000

Markdown Cheatsheet

Please have a look at Mardown Cheatsheet

<div class="myclass">You can insert <b>HTML</b> in <a href="google.com">MARKDOWN</a> </div>

Col1 | Col2 | Col3
--- | --- | ---
Value 1 | Value 2 | Value 3

[I'm an inline-style link](https://www.google.com)

[I'm an inline-style link with title](https://www.google.com "Google's Homepage")

![Hinh](/images/bg.jpg)

1. Step 1
    1. 
    2.
2. Step 2
    * Idea 1
    * Sub 1
    * Sub 2
        * Sub 2.1
            * Sub 2.1.1
                * Sub 2.1.1.1 
    * Idea 2
3. Step 2

This is `inline code` 
*text* **text**  ![a][logo] ![sdfasd][logo]

[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2"
You can insert HTML in MARKDOWN
Col1 Col2 Col3
Value 1 Value 2 Value 3

I’m an inline-style link

I’m an inline-style link with title

Hinh

  1. Step 1
    1. 2.
  2. Step 2
    • Idea 1
    • Sub 1
    • Sub 2
      • Sub 2.1
        • Sub 2.1.1
          • Sub 2.1.1.1
    • Idea 2
  3. Step 2

This is inline code text text a sdfasd

Everything Is AWESOME

Little red ridning hood


Comments