|
1 | | -markdown: GFM |
| 1 | +# Site metadata |
| 2 | +title: MapSwipe Docs |
| 3 | +description: Documentation for MapSwipe platform |
| 4 | +url: https://docs.mapswipe.org |
2 | 5 | repository: mapswipe/mapswipe-docs |
3 | 6 |
|
| 7 | +# Plugins |
4 | 8 | plugins: |
| 9 | + - jekyll-remote-theme |
| 10 | + - jekyll-commonmark-ghpages |
5 | 11 | - jekyll-gfm-admonitions |
| 12 | + - jekyll-seo-tag |
| 13 | + - jekyll-sitemap |
| 14 | + - jekyll-toc |
| 15 | + - jekyll-relative-links |
| 16 | + |
| 17 | +# Rewrite Markdown links to *.md files into their rendered permalinks at build |
| 18 | +# time. Lets us author plain relative .md links (which lychee can verify on |
| 19 | +# disk) instead of hand-maintaining permalink URLs. |
| 20 | +relative_links: |
| 21 | + enabled: true |
| 22 | + collections: false |
| 23 | + |
| 24 | +# Markdown processor (jekyll-commonmark-ghpages) |
| 25 | +markdown: CommonMarkGhPages |
| 26 | +commonmark: |
| 27 | + options: |
| 28 | + - SMART |
| 29 | + - UNSAFE |
| 30 | + extensions: |
| 31 | + - strikethrough |
| 32 | + - autolink |
| 33 | + - table |
| 34 | + - tagfilter |
| 35 | + - tasklist |
| 36 | + syntax_highlighter: rouge |
| 37 | + syntax_highlighter_opts: |
| 38 | + default_lang: text |
| 39 | + |
| 40 | +# Theme: just-the-docs (loaded via jekyll-remote-theme) |
| 41 | +remote_theme: just-the-docs/just-the-docs |
| 42 | +color_scheme: mapswipe |
| 43 | + |
| 44 | +# UI: Search |
| 45 | +search_enabled: true |
| 46 | +search: |
| 47 | + heading_level: 3 |
| 48 | + previews: 2 |
| 49 | + preview_words_before: 3 |
| 50 | + preview_words_after: 3 |
| 51 | + tokenizer_separator: /[\s\-/]+/ |
| 52 | + rel_url: true |
| 53 | + button: false |
| 54 | + |
| 55 | +# UI: Anchor links on headings |
| 56 | +heading_anchors: true |
| 57 | + |
| 58 | +# UI: Top-right auxiliary links |
| 59 | +aux_links: |
| 60 | + Community: https://community.mapswipe.org |
| 61 | + Website: https://mapswipe.org |
| 62 | + Manager Dashboard: https://managers.mapswipe.org |
| 63 | +aux_links_new_tab: true |
| 64 | + |
| 65 | +# UI: "Edit this page" footer link |
| 66 | +gh_edit_link: true |
| 67 | +gh_edit_link_text: "Edit this page" |
| 68 | +gh_edit_repository: "https://github.com/mapswipe/mapswipe-docs" |
| 69 | +gh_edit_branch: "main" |
| 70 | +gh_edit_view_mode: "edit" |
| 71 | + |
| 72 | +# UI: Footer |
| 73 | +footer_content: 'Copyright © MapSwipe. Distributed under the project license.' |
| 74 | +last_edit_timestamp: true |
| 75 | + |
| 76 | +# UI: Back-to-top link |
| 77 | +back_to_top: true |
| 78 | +back_to_top_text: "Back to top" |
| 79 | + |
| 80 | +# UI: Copy-to-clipboard button on fenced code blocks |
| 81 | +enable_copy_code_button: true |
| 82 | + |
| 83 | +# UI: Mermaid diagrams in fenced ```mermaid blocks (just-the-docs theme) |
| 84 | +# Version picked from https://www.jsdelivr.com/package/npm/mermaid |
| 85 | +mermaid: |
| 86 | + version: "11.4.1" |
| 87 | + |
| 88 | +# In-page Table of Contents (jekyll-toc) |
| 89 | +toc: |
| 90 | + min_level: 2 |
| 91 | + max_level: 4 |
| 92 | + ordered_list: false |
| 93 | + no_toc_section_class: no-toc |
| 94 | + |
| 95 | +# Page defaults (Jekyll core) |
| 96 | +defaults: |
| 97 | + - scope: |
| 98 | + path: "" |
| 99 | + values: |
| 100 | + layout: page |
| 101 | + toc: true |
| 102 | + |
| 103 | +# Build exclusions (Jekyll core) |
| 104 | +exclude: |
| 105 | + - Gemfile |
| 106 | + - Gemfile.lock |
| 107 | + - README.md |
| 108 | + - pre-push.sh |
| 109 | + - .pre-commit-config.yaml |
| 110 | + - typos.toml |
| 111 | + - .lycheeignore |
0 commit comments