# This is the config file for the documentation generator. # (c) 2012 Andreas Rumpf # Feel free to edit the templates as you need. If you modify this file, it # might be worth updating the hardcoded values in packages/docutils/rstgen.nim split.item.toc = "20" # too long entries in the table of contents wrap around # after this number of characters doc.section = """

$sectionTitle

$content
""" doc.section.toc = """
  • $sectionTitle
  • """ # Chunk of HTML emitted for each entry in the HTML table of contents. # Available variables are: # * $desc: the actual docstring of the item. # * $header: the full version of name, including types, pragmas, tags, etc. # * $header_plain: like header but without HTML, for attribute embedding. # * $itemID: numerical unique entry of the item in the HTML. # * $itemSym: short symbolic name of the item for easier hyperlinking. # * $itemSymEnc: quoted version for URLs or attributes. # * $itemSymOrID: the symbolic name or the ID if that is not unique. # * $itemSymOrIDEnc: quoted version for URLs or attributes. # * $name: reduced name of the item. # * $seeSrc: generated HTML from doc.item.seesrc (if some switches are used). doc.item = """
    $header
    $desc $seeSrc
    """ # Chunk of HTML emitted for each entry in the HTML table of contents. # See doc.item for available substitution variables. doc.item.toc = """
  • $name
  • """ # HTML rendered for doc.item's seeSrc variable. Note that this will render to # the empty string if you don't pass anything through --docSeeSrcURL. Available # substitutaion variables here are: # * $path: relative path to the file being processed. # * $line: line of the item in the original source file. # * $url: whatever you did pass through the --docSeeSrcUrl switch (which also # gets variables path/line replaced!) doc.item.seesrc = """  Source""" doc.toc = """ """ doc.body_toc = """
    $tableofcontents

    $moduledesc

    $content
    """ doc.body_no_toc = """ $moduledesc $content """ doc.listing_start = "
    "
    doc.listing_end = "
    " doc.file = """ NimYAML - $title Fork me on GitHub
    NimYAML Home Testing Ground Docs: Overview Serialization Module yaml

    $title

    $content
    """