Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.09 KB

__README.md

File metadata and controls

41 lines (25 loc) · 1.09 KB

Hugo Content Directory

This directory contains all files that Hugo will convert into HTML.

Reference: https://gohugo.io/content-management/

Articles

All articles go into the articles folder.

To Hugo, articles is both a Hugo Section and a Content Type.

Markdown Extensions

Hugo supports standard Markdown plus extensions provided by its Markdown parser (Goldmark).

For a list of supported Markdown extensions, see: https://github.com/yuin/goldmark/#built-in-extensions

Emojis

Hugo supports Emojis. For a full list, see: https://gohugo.io/quick-reference/emojis/#introduction

Content Summaries

Hugo supports the <!--more--> summary divider.

See: https://gohugo.io/content-management/summaries/

Ignored Files

This file is ignored by Hugo. File ignores are configured in the hugo.yaml file - like this:

module:
  mounts:
    - source: 'content'
      target: 'content'
      # Exclude files from the 'content' directory
      excludeFiles:
        - '__README.md'