Skip to content
This repository has been archived by the owner on Apr 16, 2020. It is now read-only.

Latest commit

 

History

History
29 lines (22 loc) · 936 Bytes

configuring.md

File metadata and controls

29 lines (22 loc) · 936 Bytes

Configuring your project

Markment might use some extra metadata to render your documentation.

It's done by reading a file called .markment.yml in the root folder of your documentation.

Below there is a full-featured example of a .markment.yml file.

project:
  name: This title will probably be used in each <title> tag of the templates
  version: 1.2.3
  description: This is a short
  github_url: http://github.com/yourname/yourproject
  tarball_download_url: http://yoururl.com/file.tgz  # if not given defaults to "{github_url}/archive/master.tar.gz"
  zipball_download_url: http://yoururl.com/file.zip  # if not given defaults to "{github_url}/archive/master.zip

documentation:
  index: TODO.md  # the file that should be considered the main one. Defaults to README.md

toc:
  - introduction.md
  - tutorial/step1.md
  - tutorial/step2.md
  - tutorial/step3.md
  - reference/core.md
  - reference/api.md