Class Chapters

Constructors

Properties

chaptersFolder: string = 'chapters'
directoryPath: string = ...
relativePath: string = '..'
searchPattern: string = ...

Methods

  • Check that each file has a title in its front matter.

    Parameters

    • files: string[]

      The files to check for titles.

    Returns void

    Error - If no title found in a file.

  • Check that each folder containing files has an 'index.qmd' file.

    Parameters

    • files: string[]

      The files to check.

    Returns string[]

    Error - If a directory with files does not contain an index.qmd file.

  • Create the chapters index.qmd file.

    Parameters

    • chaptersPath: string
    • ymlObject: StrYaml[]

    Returns void

    Error - If no chapters path has been supplied.

    Error - If no yaml object has been supplied.

    Error - If no title found in a .qmd file.

  • Create sidebar structure in yaml format from provided files

    Parameters

    • files: string[]

      The files to create the sidebar structure from.

    Returns StrYaml[]

    The sidebar structure.

    Each file is ordered by the number prefix of the folder and then by file name. The 'index.qmd' file is placed before numbered files. Then all files in the same directory are grouped together. This structure is then converted to yaml format. Note, the files' full path is ultimately altered to be relative to the chapters folder.

    Error - If no files are found or if a directory with files does not contain an index.qmd file.

  • Get the title from the front matter of a file.

    Parameters

    • file: string

      The file to get the title from.

    Returns string

    The title of the file.

    Error - If no title found in the file.

  • Remove timeline children from the files except index.qmd.

    Parameters

    • files: string[]

      Files to remove timeline children from.

    Returns string[]

    Files with timeline children removed except index.qmd.

  • Run all the methods to create the sidebar and chapters files.

    Returns void

  • Write sidebar structure to yaml file

    Parameters

    • yamlPath: string

      The path to write the sidebar yaml file.

    • yamlObject: StrYaml[]

      The sidebar structure in yaml format.

    Returns void

    Sidebar structure

    Error - If failed to write the yaml file.