├── .gitignore ├── 1-ruby-and-devkit.md ├── 1x-ruby-and-devkit-error.md ├── 2-jekyll-gem.md ├── 2x-jekyll-gem-sslerror.md ├── 2x-jekyll-gem-windows-path.md ├── 3-syntax-highlighting.md ├── 4-markdown.md ├── 404.html ├── 4x-markdown-redcarpet.md ├── 5-wdm-gem.md ├── 5x-wdm-gem-watchissue.md ├── 6-running-jekyll.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── LICENSE-hyde.md ├── README.md ├── _config.yml ├── _includes ├── head.html └── sidebar.html ├── _layouts ├── default.html ├── page.html └── single.html ├── css ├── hyde.css ├── poole.css └── syntax.css ├── img ├── 1_rubyinstaller.png └── social_media_jekyllguide.png └── index.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/.gitignore -------------------------------------------------------------------------------- /1-ruby-and-devkit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/1-ruby-and-devkit.md -------------------------------------------------------------------------------- /1x-ruby-and-devkit-error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/1x-ruby-and-devkit-error.md -------------------------------------------------------------------------------- /2-jekyll-gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/2-jekyll-gem.md -------------------------------------------------------------------------------- /2x-jekyll-gem-sslerror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/2x-jekyll-gem-sslerror.md -------------------------------------------------------------------------------- /2x-jekyll-gem-windows-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/2x-jekyll-gem-windows-path.md -------------------------------------------------------------------------------- /3-syntax-highlighting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/3-syntax-highlighting.md -------------------------------------------------------------------------------- /4-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/4-markdown.md -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/404.html -------------------------------------------------------------------------------- /4x-markdown-redcarpet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/4x-markdown-redcarpet.md -------------------------------------------------------------------------------- /5-wdm-gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/5-wdm-gem.md -------------------------------------------------------------------------------- /5x-wdm-gem-watchissue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/5x-wdm-gem-watchissue.md -------------------------------------------------------------------------------- /6-running-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/6-running-jekyll.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-hyde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/LICENSE-hyde.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/_includes/sidebar.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/_layouts/single.html -------------------------------------------------------------------------------- /css/hyde.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/css/hyde.css -------------------------------------------------------------------------------- /css/poole.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/css/poole.css -------------------------------------------------------------------------------- /css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/css/syntax.css -------------------------------------------------------------------------------- /img/1_rubyinstaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/img/1_rubyinstaller.png -------------------------------------------------------------------------------- /img/social_media_jekyllguide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/img/social_media_jekyllguide.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sverrirs/jekyllonwindows/HEAD/index.md --------------------------------------------------------------------------------