|
| 1 | +baseURL = 'http://localhost/workshop-learn-github-actions/' |
| 2 | +languageCode = 'en-us' |
| 3 | +title = 'Learn GitHub Actions' |
| 4 | +theme = 'hugo-book' |
| 5 | + |
| 6 | +# Book configuration |
| 7 | +disablePathToLower = false |
| 8 | +enableGitInfo = false |
| 9 | +canonifyURL = true |
| 10 | + |
| 11 | +# Needed for mermaid/katex shortcodes |
| 12 | +[markup] |
| 13 | + |
| 14 | +# [markup.highlight] |
| 15 | +# noClasses = false |
| 16 | + |
| 17 | +[markup.goldmark.renderer] |
| 18 | + unsafe = true |
| 19 | + |
| 20 | +[markup.tableOfContents] |
| 21 | + startLevel = 2 |
| 22 | + endLevel = 5 |
| 23 | + |
| 24 | +# [menu] |
| 25 | +# # [[menu.before]] |
| 26 | +# [[menu.after]] |
| 27 | +# name = "Github" |
| 28 | +# url = "https://github.com/alex-shpak/hugo-book" |
| 29 | +# weight = 10 |
| 30 | + |
| 31 | +# [[menu.after]] |
| 32 | +# name = "Hugo Themes" |
| 33 | +# url = "https://themes.gohugo.io/hugo-book/" |
| 34 | +# weight = 20 |
| 35 | + |
| 36 | +[params] |
| 37 | + # Add a name or alias to this list as you go through the workshop. |
| 38 | + Authors = [ |
| 39 | + "Carson Anderson" |
| 40 | + "Cole Olsen" |
| 41 | + ] |
| 42 | + |
| 43 | + # (Optional, default light) Sets color theme: light, dark or auto. |
| 44 | + # Theme 'auto' switches between dark and light modes based on browser/os preferences |
| 45 | + BookTheme = 'dark' |
| 46 | + |
| 47 | + # (Optional, default none) Set the path to a logo for the book. If the logo is |
| 48 | + # /static/logo.png then the path would be logo.png |
| 49 | + # BookLogo = 'logo.png' |
| 50 | + |
| 51 | + # (Optional, default none) Set leaf bundle to render as side menu |
| 52 | + # When not specified file structure and weights will be used |
| 53 | + # BookMenuBundle = '/menu' |
| 54 | + |
| 55 | + # (Optional, default docs) Specify root page to render child pages as menu. |
| 56 | + # Page is resoled by .GetPage function: https://gohugo.io/functions/getpage/ |
| 57 | + # For backward compatibility you can set '*' to render all sections to menu. Acts same as '/' |
| 58 | + BookSection = '/' |
| 59 | + |
| 60 | + # Set source repository location. |
| 61 | + # Used for 'Last Modified' and 'Edit this page' links. |
| 62 | + BookRepo = 'https://github.com/carsonoid/workshop-guts-of-git' |
| 63 | + |
| 64 | +# # (Optional, default 'commit') Specifies commit portion of the link to the page's last modified |
| 65 | +# # commit hash for 'doc' page type. |
| 66 | +# # Requires 'BookRepo' param. |
| 67 | +# # Value used to construct a URL consisting of BookRepo/BookCommitPath/<commit-hash> |
| 68 | +# # Github uses 'commit', Bitbucket uses 'commits' |
| 69 | +# # BookCommitPath = 'commit' |
| 70 | + |
| 71 | +# # Enable "Edit this page" links for 'doc' page type. |
| 72 | +# # Disabled by default. Uncomment to enable. Requires 'BookRepo' param. |
| 73 | +# # Edit path must point to root directory of repo. |
| 74 | +# BookEditPath = 'edit/main/exampleSite' |
| 75 | + |
| 76 | + # Configure the date format used on the pages |
| 77 | + # - In git information |
| 78 | + # - In blog posts |
| 79 | + BookDateFormat = 'January 2, 2006' |
| 80 | + |
| 81 | + # (Optional, default true) Enables search function with flexsearch, |
| 82 | + # Index is built on fly, therefore it might slowdown your website. |
| 83 | + # Configuration for indexing can be adjusted in i18n folder per language. |
| 84 | + BookSearch = false |
| 85 | + |
| 86 | +# # (Optional, default true) Enables comments template on pages |
| 87 | +# # By default partals/docs/comments.html includes Disqus template |
| 88 | +# # See https://gohugo.io/content-management/comments/#configure-disqus |
| 89 | +# # Can be overwritten by same param in page frontmatter |
| 90 | +# BookComments = true |
| 91 | + |
| 92 | +# # /!\ This is an experimental feature, might be removed or changed at any time |
| 93 | +# # (Optional, experimental, default false) Enables portable links and link checks in markdown pages. |
| 94 | +# # Portable links meant to work with text editors and let you write markdown without {{< relref >}} shortcode |
| 95 | +# # Theme will print warning if page referenced in markdown does not exists. |
| 96 | +# BookPortableLinks = true |
| 97 | + |
| 98 | +# # /!\ This is an experimental feature, might be removed or changed at any time |
| 99 | +# # (Optional, experimental, default false) Enables service worker that caches visited pages and resources for offline use. |
| 100 | +# BookServiceWorker = true |
| 101 | + |
| 102 | +# # /!\ This is an experimental feature, might be removed or changed at any time |
| 103 | +# # (Optional, experimental, default false) Enables a drop-down menu for translations only if a translation is present. |
| 104 | +# BookTranslatedOnly = false |
0 commit comments