-
Notifications
You must be signed in to change notification settings - Fork 1
/
hologram_config.yml
39 lines (31 loc) · 1.51 KB
/
hologram_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Hologram will run from same directory where this config file resides
# All paths should be relative to there
# The directory containing the source files to parse recursively
source:
- ./src/site/templates/partials
- ./src/sass
# The directory that hologram will build to
destination: ./build/styleguide
# The assets needed to build the docs (templates header.html,
# footer.html, etc)
# You may put doc related assets here too: images, css, etc.
documentation_assets: ./src/styleguide/templates/partials
# The folder that contains templates for rendering code examples.
# If you want to change the way code examples appear in the styleguide,
# modify the files in this folder
code_example_templates: ./src/styleguide/templates/code_layouts/code_example_templates
# The folder that contains custom code example renderers.
# If you want to create additional renderers that are not provided
# by Hologram (i.e. coffeescript renderer, jade renderer, etc)
# place them in this folder
code_example_renderers: ./src/styleguide/templates/code_layouts/code_example_renderers
# To additionally output navigation for top level sections, set the value to
# 'section'. To output navigation for sub-sections,
# set the value to `all`
nav_level: all
# Hologram displays warnings when there are issues with your docs
# (e.g. if a component's parent is not found, if the _header.html and/or
# _footer.html files aren't found)
# If you want Hologram to exit on these warnings, set the value to 'true'
# (Default value is 'false')
exit_on_warnings: false