Skip to content
Snippets Groups Projects
config.toml 692 B
Newer Older
  • Learn to ignore specific revisions
  • Alexandre MEYER's avatar
    Alexandre MEYER committed
    baseURL = "https://example.com"
    title = "Website Name"
    theme = "etch"
    languageCode = "en-US"
    enableInlineShortcodes = true
    pygmentsCodeFences = true
    pygmentsUseClasses = true
    
    [params]
      description = "Your site description"
      copyright = "Copyright © 2021 Your Name"
      dark = "auto"
      highlight = true
    
    [menu]
      [[menu.main]]
        identifier = "posts"
        name = "posts"
        title = "posts"
        url = "/"
        weight = 10
    
      [[menu.main]]
        identifier = "about"
        name = "about"
        title = "about"
        url = "/about/"
        weight = 20
    
    [permalinks]
      posts = "/:title/"
    
    [markup.goldmark.renderer]
      # Allow HTML in Markdown
      unsafe = true
    
      [markup.tableOfContents]
        ordered = true