|
| 1 | +# Set theme |
| 2 | +remote_theme: just-the-docs/just-the-docs@main |
| 3 | + |
| 4 | +# File excludes |
| 5 | +exclude: |
| 6 | +- README.md |
| 7 | +- Gemfile |
| 8 | +- Gemfile.lock |
| 9 | +- .jekyll-cache |
| 10 | +- .sass-cache |
| 11 | + |
| 12 | +# Set a path/url to a logo that will be displayed instead of the title |
| 13 | +logo: "/assets/images/uda_logo.svg" |
| 14 | + |
| 15 | +# Enable or disable the site search |
| 16 | +# Supports true (default) or false |
| 17 | +search_enabled: true |
| 18 | +search: |
| 19 | + # Split pages into sections that can be searched individually |
| 20 | + # Supports 1 - 6, default: 2 |
| 21 | + heading_level: 2 |
| 22 | + # Maximum amount of previews per search result |
| 23 | + # Default: 3 |
| 24 | + previews: 2 |
| 25 | + # Maximum amount of words to display before a matched word in the preview |
| 26 | + # Default: 5 |
| 27 | + preview_words_before: 3 |
| 28 | + # Maximum amount of words to display after a matched word in the preview |
| 29 | + # Default: 10 |
| 30 | + preview_words_after: 3 |
| 31 | + # Set the search token separator |
| 32 | + # Default: /[\s\-/]+/ |
| 33 | + # Example: enable support for hyphenated search words |
| 34 | + tokenizer_separator: /[\s/]+/ |
| 35 | + # Display the relative url in search results |
| 36 | + # Supports true (default) or false |
| 37 | + rel_url: true |
| 38 | + # Enable or disable the search button that appears in the bottom right corner of every page |
| 39 | + # Supports true or false (default) |
| 40 | + button: false |
| 41 | + |
| 42 | +# Enable or disable heading anchors |
| 43 | +heading_anchors: true |
| 44 | + |
| 45 | +# Aux links for the upper right navigation |
| 46 | +aux_links: |
| 47 | + "UDA on GitHub": |
| 48 | + - "https://github.com/ukaea/uda" |
| 49 | + |
| 50 | +# Makes Aux links open in a new tab. Default is false |
| 51 | +aux_links_new_tab: false |
| 52 | + |
| 53 | +# Sort order for navigation links |
| 54 | +# nav_sort: case_insensitive # default, equivalent to nil |
| 55 | +nav_sort: case_sensitive # Capital letters sorted before lowercase |
| 56 | + |
| 57 | +# External navigation links |
| 58 | +nav_external_links: |
| 59 | + - title: UDA on GitHub |
| 60 | + url: https://github.com/ukaea/uda |
| 61 | + |
| 62 | +# Back to top link |
| 63 | +back_to_top: true |
| 64 | +back_to_top_text: "Back to top" |
| 65 | + |
| 66 | +# Footer last edited timestamp |
| 67 | +last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter |
| 68 | +last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html |
| 69 | + |
| 70 | +# Footer "Edit this page on GitHub" link text |
| 71 | +gh_edit_link: true # show or hide edit this page link |
| 72 | +gh_edit_link_text: "Edit this page on GitHub" |
| 73 | +gh_edit_repository: "https://github.com/ukaea/uda" # the github URL for your repo |
| 74 | +gh_edit_branch: "docs" # the branch that your docs is served from |
| 75 | +gh_edit_source: docs # the source that your files originate from |
| 76 | +gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately |
| 77 | + |
| 78 | +# Color scheme currently only supports "dark", "light"/nil (default), or a custom scheme that you define |
| 79 | +color_scheme: light |
| 80 | + |
| 81 | +callouts_level: quiet # or loud |
| 82 | +callouts: |
| 83 | + highlight: |
| 84 | + color: yellow |
| 85 | + important: |
| 86 | + title: Important |
| 87 | + color: blue |
| 88 | + new: |
| 89 | + title: New |
| 90 | + color: green |
| 91 | + note: |
| 92 | + title: Note |
| 93 | + color: purple |
| 94 | + warning: |
| 95 | + title: Warning |
| 96 | + color: red |
| 97 | + |
| 98 | +plugins: |
| 99 | + - jekyll-sitemap |
| 100 | + - jekyll-mentions |
| 101 | + - jekyll-paginate |
| 102 | + - jekyll-seo-tag |
| 103 | + - jekyll-redirect-from |
| 104 | + - jekyll-feed |
| 105 | + - jekyll-commonmark |
| 106 | + - jekyll-include-cache |
| 107 | + - jemoji |
| 108 | + - jekyll-remote-theme |
| 109 | + |
| 110 | +kramdown: |
| 111 | + syntax_highlighter_opts: |
| 112 | + block: |
| 113 | + line_numbers: false |
| 114 | + |
| 115 | +compress_html: |
| 116 | + clippings: all |
| 117 | + comments: all |
| 118 | + endings: all |
| 119 | + startings: [] |
| 120 | + blanklines: false |
| 121 | + profile: false |
| 122 | + # ignore: |
| 123 | + # envs: all |
| 124 | + |
| 125 | +# Site settings |
| 126 | +url: 'https://ukaea.github.io/UDA/' |
| 127 | +baseurl: '/UDA' |
| 128 | +title: 'UDA' |
| 129 | +description: 'UDA documentation' |
| 130 | +permalink: pretty |
| 131 | +encoding: utf-8 # Make sure the encoding is right |
| 132 | +lang: en-GB # Set the site language |
| 133 | +repo: "https://github.com/ukaea/UDA" |
| 134 | +email: "jonathan.hollocombe@ukaea.uk" |
| 135 | + |
| 136 | +favicons: # Favicons are also used in the manifest file. Syntax is 'size: path' |
| 137 | + 16: '/assets/logos/favicon-16x16.png' |
| 138 | + 32: '/assets/logos/favicon-32x32.png' |
0 commit comments