Skip to content
dk949 edited this page Oct 18, 2020 · 1 revision
  • hugo uses mostly standard markdown, with slight changes
  • metadata is stored at the top of the document, in a box separated by 3 dashes at the top and bottom, e.g.:
    ---
    title: "Post"
    date: 2020-10-17
    draft: false
    ---
  • if draft is set to true, the page will not be generated
  • this version of markdown supports tables
    • columns are separated by pipe symbols and rows are separated by newlines, like so | Value 1 | value 2 | value 3|
    • headers are separated by a line of dashes, |-------|-------|-------|
  • links
    • images and files used on the site need to be placed into the static/ directory inside of the _site-source/ directory.
    • when linking to the files and images, their locations need to be given relative to the static/ directory.
      • e.g. if and image is stored in Team-13-RLC.github.io/_site-source/static/img/image.jpg, the link to it will be ![alt-text](/img/image.jpg)

Clone this wiki locally