|
| 1 | +baseURL = "/" |
| 2 | +title = "SeleniumHQ Browser Automation" |
| 3 | + |
| 4 | +enableRobotsTXT = true |
| 5 | + |
| 6 | +# Hugo allows theme composition (and inheritance). The precedence is from left to right. |
| 7 | +theme = ["docsy"] |
| 8 | + |
| 9 | +# Will give values to .Lastmod etc. |
| 10 | +enableGitInfo = true |
| 11 | + |
| 12 | +# Language settings |
| 13 | +contentDir = "content/en" |
| 14 | +defaultContentLanguage = "en" |
| 15 | +defaultContentLanguageInSubdir = false |
| 16 | +# Useful when translating. |
| 17 | +enableMissingTranslationPlaceholders = true |
| 18 | + |
| 19 | +disableKinds = ["taxonomy", "taxonomyTerm"] |
| 20 | + |
| 21 | +# Highlighting config |
| 22 | +pygmentsCodeFences = true |
| 23 | +pygmentsUseClasses = false |
| 24 | +# Use the new Chroma Go highlighter in Hugo. |
| 25 | +pygmentsUseClassic = false |
| 26 | +#pygmentsOptions = "linenos=table" |
| 27 | +# See https://help.farbox.com/pygments.html |
| 28 | +pygmentsStyle = "tango" |
| 29 | + |
| 30 | +# Configure how URLs look like per section. |
| 31 | +[permalinks] |
| 32 | +blog = "/:section/:year/:month/:day/:slug/" |
| 33 | + |
| 34 | +## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday |
| 35 | +[blackfriday] |
| 36 | +plainIDAnchors = true |
| 37 | +hrefTargetBlank = true |
| 38 | +angledQuotes = false |
| 39 | +latexDashes = true |
| 40 | + |
| 41 | +# Image processing configuration. |
| 42 | +[imaging] |
| 43 | +resampleFilter = "CatmullRom" |
| 44 | +quality = 75 |
| 45 | +anchor = "smart" |
| 46 | + |
| 47 | +[services] |
| 48 | +[services.googleAnalytics] |
| 49 | +# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback]. |
| 50 | +id = "UA-00000000-0" |
| 51 | + |
| 52 | +# Language configuration |
| 53 | + |
| 54 | +[languages] |
| 55 | +[languages.en] |
| 56 | +title = "SeleniumHQ Browser Automation" |
| 57 | +description = "A Docsy example site" |
| 58 | +languageName ="English" |
| 59 | +# Weight used for sorting. |
| 60 | +weight = 1 |
| 61 | + |
| 62 | +[markup] |
| 63 | +[markup.goldmark] |
| 64 | +[markup.goldmark.renderer] |
| 65 | +unsafe = true |
| 66 | +[markup.highlight] |
| 67 | +# See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html |
| 68 | +style = "tango" |
| 69 | +# Uncomment if you want your chosen highlight style used for code blocks without a specified language |
| 70 | +# guessSyntax = "true" |
| 71 | + |
| 72 | +# Everything below this are Site Params |
| 73 | + |
| 74 | +[params] |
| 75 | +copyright = "The Docsy Authors" |
| 76 | +privacy_policy = "https://policies.google.com/privacy" |
| 77 | + |
| 78 | +# First one is picked as the Twitter card image if not set on page. |
| 79 | +# images = ["images/project-illustration.png"] |
| 80 | + |
| 81 | +# Menu title if your navbar has a versions selector to access old versions of your site. |
| 82 | +# This menu appears only if you have at least one [params.versions] set. |
| 83 | +version_menu = "Releases" |
| 84 | + |
| 85 | +# Flag used in the "version-banner" partial to decide whether to display a |
| 86 | +# banner on every page indicating that this is an archived version of the docs. |
| 87 | +# Set this flag to "true" if you want to display the banner. |
| 88 | +archived_version = false |
| 89 | + |
| 90 | +# The version number for the version of the docs represented in this doc set. |
| 91 | +# Used in the "version-banner" partial to display a version number for the |
| 92 | +# current doc set. |
| 93 | +version = "0.0" |
| 94 | + |
| 95 | +# A link to latest version of the docs. Used in the "version-banner" partial to |
| 96 | +# point people to the main doc site. |
| 97 | +url_latest_version = "https://example.com" |
| 98 | + |
| 99 | +# Repository configuration (URLs for in-page links to opening issues and suggesting changes) |
| 100 | +github_repo = "https://github.com/google/docsy-example" |
| 101 | +# An optional link to a related project repo. For example, the sibling repository where your product code lives. |
| 102 | +github_project_repo = "https://github.com/google/docsy" |
| 103 | + |
| 104 | +# Specify a value here if your content directory is not in your repo's root directory |
| 105 | +# github_subdir = "" |
| 106 | + |
| 107 | +# Google Custom Search Engine ID. Remove or comment out to disable search. |
| 108 | +gcs_engine_id = "011737558837375720776:fsdu1nryfng" |
| 109 | + |
| 110 | +# Enable Algolia DocSearch |
| 111 | +algolia_docsearch = false |
| 112 | + |
| 113 | +# Enable Lunr.js offline search |
| 114 | +offlineSearch = false |
| 115 | + |
| 116 | +# Enable syntax highlighting and copy buttons on code blocks with Prism |
| 117 | +prism_syntax_highlighting = false |
| 118 | + |
| 119 | +# User interface configuration |
| 120 | +[params.ui] |
| 121 | +# Enable to show the side bar menu in its compact state. |
| 122 | +sidebar_menu_compact = false |
| 123 | +# Set to true to disable breadcrumb navigation. |
| 124 | +breadcrumb_disable = false |
| 125 | +# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled) |
| 126 | +sidebar_search_disable = false |
| 127 | +# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar |
| 128 | +navbar_logo = true |
| 129 | +# Set to true to disable the About link in the site footer |
| 130 | +footer_about_disable = false |
| 131 | + |
| 132 | +# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events. |
| 133 | +# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set. |
| 134 | +# If you want this feature, but occasionally need to remove the "Feedback" section from a single page, |
| 135 | +# add "hide_feedback: true" to the page's front matter. |
| 136 | +[params.ui.feedback] |
| 137 | +enable = true |
| 138 | +# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful). |
| 139 | +yes = 'Glad to hear it! Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.' |
| 140 | +no = 'Sorry to hear that. Please <a href="https://github.com/USERNAME/REPOSITORY/issues/new">tell us how we can improve</a>.' |
| 141 | + |
| 142 | +# Adds a reading time to the top of each doc. |
| 143 | +# If you want this feature, but occasionally need to remove the Reading time from a single page, |
| 144 | +# add "hide_readingtime: true" to the page's front matter |
| 145 | +[params.ui.readingtime] |
| 146 | +enable = false |
| 147 | + |
| 148 | +[params.links] |
| 149 | +# End user relevant links. These will show up on left side of footer and in the community page if you have one. |
| 150 | +[[params.links.user]] |
| 151 | +name = "User mailing list" |
| 152 | +url = "https://example.org/mail" |
| 153 | +icon = "fa fa-envelope" |
| 154 | +desc = "Discussion and help from your fellow users" |
| 155 | +[[params.links.user]] |
| 156 | +name ="Twitter" |
| 157 | +url = "https://example.org/twitter" |
| 158 | +icon = "fab fa-twitter" |
| 159 | +desc = "Follow us on Twitter to get the latest news!" |
| 160 | +[[params.links.user]] |
| 161 | +name = "Stack Overflow" |
| 162 | +url = "https://example.org/stack" |
| 163 | +icon = "fab fa-stack-overflow" |
| 164 | +desc = "Practical questions and curated answers" |
| 165 | +# Developer relevant links. These will show up on right side of footer and in the community page if you have one. |
| 166 | +[[params.links.developer]] |
| 167 | +name = "GitHub" |
| 168 | +url = "https://github.com/google/docsy" |
| 169 | +icon = "fab fa-github" |
| 170 | +desc = "Development takes place here!" |
| 171 | +[[params.links.developer]] |
| 172 | +name = "Slack" |
| 173 | +url = "https://example.org/slack" |
| 174 | +icon = "fab fa-slack" |
| 175 | +desc = "Chat with other project developers" |
| 176 | +[[params.links.developer]] |
| 177 | +name = "Developer mailing list" |
| 178 | +url = "https://example.org/mail" |
| 179 | +icon = "fa fa-envelope" |
| 180 | +desc = "Discuss development issues around the project" |
| 181 | + |
0 commit comments