github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v1/config.toml (about)

     1  baseURL = "https://skaffold.dev"
     2  title = "Skaffold"
     3  Title = "Skaffold"
     4  
     5  enableRobotsTXT = true
     6  
     7  # Hugo allows theme composition (and inheritance). The precedence is from left to right.
     8  theme = ["docsy"]
     9  
    10  # Will give values to .Lastmod etc.
    11  enableGitInfo = true
    12  
    13  # Language settings
    14  contentDir = "content/en"
    15  defaultContentLanguage = "en"
    16  defaultContentLanguageInSubdir = false
    17  # Useful when translating.
    18  enableMissingTranslationPlaceholders = true
    19  
    20  # validate links and fail if not found
    21  refLinksErrorLevel="ERROR"
    22  relativeURLs=true
    23  canonifyURLs=false
    24  disableKinds = ["taxonomy", "taxonomyTerm"]
    25  
    26  # Highlighting config
    27  pygmentsCodeFences = true
    28  pygmentsUseClasses = false
    29  # Use the new Chroma Go highlighter in Hugo.
    30  pygmentsUseClassic = false
    31  #pygmentsOptions = "linenos=table"
    32  # See https://help.farbox.com/pygments.html
    33  pygmentsStyle = "tango"
    34  
    35   # First one is picked as the Twitter card image if not set on page.
    36   #images = ["images/project-illustration.png"]
    37  
    38  # Enable Emojis
    39  enableEmoji = true
    40  
    41  [markup.goldmark.renderer]
    42  unsafe= true
    43  
    44  # Configure how URLs look like per section.
    45  [permalinks]
    46  blog = "/:section/:year/:month/:day/:slug/"
    47  
    48  ## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday
    49  [blackfriday]
    50  plainIDAnchors = true
    51  
    52  # due to https://github.com/gohugoio/hugo/issues/2424 this should not be turned on until it is fixed
    53  hrefTargetBlank = false
    54  angledQuotes = false
    55  latexDashes = true
    56  
    57  # Image processing configuration.
    58  [imaging]
    59  resampleFilter = "CatmullRom"
    60  quality = 75
    61  anchor = "smart"
    62  
    63  [services]
    64  [services.googleAnalytics]
    65  # Uncomment and insert your GA tracking ID to enable.
    66  id = "UA-120945544-1"
    67  
    68  # Language configuration
    69  
    70  [languages]
    71  [languages.en]
    72  title = "Skaffold"
    73  description = "Easy and Repeatable Kubernetes Development"
    74  languageName ="English"
    75  # Weight used for sorting.
    76  weight = 1
    77  
    78  # Configuration for displaying a banner on archived doc sites
    79  archived_version = true
    80  version = "v1.39"
    81  url_latest_version = "https://skaffold-v2.web.app/docs/"
    82  
    83  # Everything below this are Site Params
    84  
    85  [params]
    86  copyright = "Skaffold Authors"
    87  privacy_policy = "https://policies.google.com/privacy"
    88  github_repo = "https://github.com/GoogleContainerTools/skaffold"
    89  skaffold_version = "skaffold/v2beta29"
    90  
    91  # Google Custom Search Engine ID. Remove or comment out to disable search.
    92  # gcs_engine_id = "013756393218025596041:3nojel67sum"
    93  # enabling local search https://www.docsy.dev/docs/adding-content/navigation/#configure-local-search-with-lunr
    94  offlineSearch = true
    95  
    96  # Menu title if your navbar has a versions selector to access old versions of your site.
    97  # This menu appears only if you have at least one [params.versions] set.
    98  version_menu = "Versions"
    99  
   100  # User interface configuration
   101  [params.ui]
   102  # Enable to show the side bar menu in its compact state.
   103  sidebar_menu_compact = false
   104  #  Set to true to disable breadcrumb navigation.
   105  breadcrumb_disable = false
   106  # Allow users to expand and collapse nav menu options
   107  sidebar_menu_foldable = true
   108  
   109  [params.links]
   110  # Developer relevant links. These will show up on right side of footer.
   111  [[params.links.developer]]
   112  	name = "GitHub"
   113  	url = "https://github.com/GoogleContainerTools/skaffold"
   114  	icon = "fab fa-github"
   115  [[params.links.developer]]
   116  	name = "Slack"
   117          # don't link to the slack channel as the join process is
   118          # confusing for newcomers
   119  	#url = "https://kubernetes.slack.com/messages/CABQMSZA6/"
   120  	url = "/docs/resources/#community"
   121  	icon = "fab fa-slack"
   122  [[params.links.developer]]
   123  	name = "Mailing List"
   124  	url = "https://groups.google.com/forum/#!forum/skaffold-users"
   125  	icon = "fa fa-envelope"
   126  [[params.links.developer]]
   127  	name = "Feedback"
   128  	url = "https://forms.gle/BMTbGQXLWSdn7vEs6"
   129  	icon = "fas fa-poll"
   130  
   131  [menu]
   132  	[[menu.main]]
   133  		identifier = "mailing list"
   134  		pre = "<i class='fa fa-envelope'></i>"
   135  		url = "https://groups.google.com/forum/#!forum/skaffold-users"
   136  		icon = "fa fa-envelope"
   137  		weight = -100
   138  
   139  	[[menu.main]]
   140  		identifier = "github"
   141  		pre = "<i class='fab fa-github'></i>"
   142  		url = "https://github.com/GoogleContainerTools/skaffold"
   143  		icon = "fab fa-github"
   144  		weight = -300
   145  
   146  	[[menu.main]]
   147  		identifier = "slack"
   148  		pre = "<i class='fab fa-slack'></i>"
   149                  url = "/docs/resources/#community"
   150  		icon = "fab fa-slack"
   151  		weight = -200
   152  
   153  # Add your release versions here
   154  [[params.versions]]
   155    version = "v1.0"
   156    url = "https://skaffold-v1.web.app"
   157  
   158  [[params.versions]]
   159    version = "v2.0"
   160    url = "https://skaffold-v2.web.app/"