Github Markdown Website



Any markdown file in your repository will display in your Github Pages website. You just have to use the same path to access it and replace the.mdextension by.html. To make links between your Markdown files just use a relative path to the other Markdown file. An R Markdown website template for a lab journal To use this, click the download as.zip button to start from a local computer, or skip down to the github example to fork this and get started that way. The unzipped folder contains all of the files you need to compile a website in R Markdown.

Introduction

  • Read the Docs can generate a documentation website from your open source Markdown files. Just connect your GitHub repository to their service and push — Read the Docs does the rest. They also have a service for commercial entities. MkDocs is a fast and simple static site generator that’s geared towards building project documentation.
  • Apologies, if this question is somewhat basic, but research on internet has not yielded any reasonable answers. I want to be able to run markdown on my website, similar to what github has (edit/preview setup) or actually something very similar to stackoverflow. I found a number of articles on the history of markdown including.
  • Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML). This page is maintained by and for the markdown community to document various tools and resources available to document authors and developers, as well as implementors of the various markdown implementations.

This little guide demonstrate how to turn any Github repository with a bunch of Markdown files into a simple website using Github Pages and Jekyll.

  • You don’t need to use the command line or anything other than your browser.
  • It doesn’t require any knowledge in Jekyll.
  • It’s completely compatible with any bunch of markdown files you already have in any existing repository without any modification to those files. That includes the basic README.md almost all repositories contain.
  • The markdown files will remain just as readable and usable in Github than in your website.

In fact this guide uses the same configuration and can be read both in Github and in Github Pages, at your preference:

Step by step instructions

Determine the repository where you want to activate Github Pages

You can of course create a new repository if you want.

Create the _config.yml file

That file should be created on the root of your repository. Here is some content to copy-paste in it:

It’s basically just a few tuning of Github Pages’ default configuration to have a better handling of Markdown files.

Activate Github Pages in your repository configuration

On the Github page of your project go into Settings > Options > Github Pages:

In the Source option, select master branch then Save:

Github Markdown Tutorial

Github Markdown Website

You must also choose a theme:

Switch

That’s it! Now you can juste use the link provided by Github to access you website:

Usage guide

  • Any markdown file in your repository will display in your Github Pages website. You just have to use the same path to access it and replace the .md extension by .html.
  • To make links between your Markdown files just use a relative path to the other Markdown file. The configuration you copy pasted in your _config.yml provides a plugin to convert those URLs. So your Markdown files will have correct links both in Github and Github Pages.
  • The index page of your website can be a index.md file or a README.md file. If both exists the index.md file has priority.
  • You should be able to use any Github Flavored Markdown.

Known differences between Github and Github Pages

Github Markdown Code

  • No automatic links with Github Pages. The Github Markdown renderer can automatically detect a simple copy-pasted link and make it a clickable link. Github Pages doesn’t propose a feature to reproduce that behavior, so you’ll have to braces your links with the []() syntax.

Recipes

Since the purpose of this guide is to demonstrate how to publish multiple Markdown files as a website but I don’t have much more to say I will propose you some delicious recipes instead: Simplyfatt.

Other Github Pages related projects

I’m a fan of Github Pages for the possibilities it offers to anyone to publish a website for free. I have multiple projects that could be of interest if that’s your case too:

Contributing

See the Contribution Guide.

License

See the License File.