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

     1  baseURL = "https://skaffold-v2-latest.firebaseapp.com/"
     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 Container & Kubernetes Development"
    74  languageName ="English"
    75  # Weight used for sorting.
    76  weight = 1
    77  
    78  
    79  # Everything below this are Site Params
    80  
    81  [params]
    82  copyright = "Skaffold Authors"
    83  privacy_policy = "https://policies.google.com/privacy"
    84  github_repo = "https://github.com/GoogleContainerTools/skaffold"
    85  skaffold_version = "skaffold/v4beta11"
    86  
    87  # Google Custom Search Engine ID. Remove or comment out to disable search.
    88  # gcs_engine_id = "013756393218025596041:3nojel67sum"
    89  # enabling local search https://www.docsy.dev/docs/adding-content/navigation/#configure-local-search-with-lunr
    90  offlineSearch = true
    91  
    92  # Menu title if your navbar has a versions selector to access old versions of your site.
    93  # This menu appears only if you have at least one [params.versions] set.
    94  version_menu = "Versions"
    95  
    96  # User interface configuration
    97  [params.ui]
    98  # Enable to show the side bar menu in its compact state.
    99  sidebar_menu_compact = false
   100  #  Set to true to disable breadcrumb navigation.
   101  breadcrumb_disable = false
   102  # Allow users to expand and collapse nav menu options
   103  sidebar_menu_foldable = true
   104  
   105  [params.links]
   106  # Developer relevant links. These will show up on right side of footer.
   107  [[params.links.developer]]
   108  	name = "GitHub"
   109  	url = "https://github.com/GoogleContainerTools/skaffold"
   110  	icon = "fab fa-github"
   111  [[params.links.developer]]
   112  	name = "Slack"
   113          # don't link to the slack channel as the join process is
   114          # confusing for newcomers
   115  	#url = "https://kubernetes.slack.com/messages/CABQMSZA6/"
   116  	url = "/docs/resources/#community"
   117  	icon = "fab fa-slack"
   118  [[params.links.developer]]
   119  	name = "Mailing List"
   120  	url = "https://groups.google.com/forum/#!forum/skaffold-users"
   121  	icon = "fa fa-envelope"
   122  [[params.links.developer]]
   123  	name = "Feedback"
   124  	url = "https://forms.gle/BMTbGQXLWSdn7vEs6"
   125  	icon = "fas fa-poll"
   126  
   127  [menu]
   128  	[[menu.main]]
   129  		identifier = "mailing list"
   130  		pre = "<i class='fa fa-envelope'></i>"
   131  		url = "https://groups.google.com/forum/#!forum/skaffold-users"
   132  		icon = "fa fa-envelope"
   133  		weight = -100
   134  
   135  	[[menu.main]]
   136  		identifier = "github"
   137  		pre = "<i class='fab fa-github'></i>"
   138  		url = "https://github.com/GoogleContainerTools/skaffold"
   139  		icon = "fab fa-github"
   140  		weight = -300
   141  
   142  	[[menu.main]]
   143  		identifier = "slack"
   144  		pre = "<i class='fab fa-slack'></i>"
   145                  url = "/docs/resources/#community"
   146  		icon = "fab fa-slack"
   147  		weight = -200
   148  
   149  # Add your release versions here
   150  [[params.versions]]
   151    version = "v1.0"
   152    url = "https://skaffold-v1.web.app"
   153  
   154  [[params.versions]]
   155    version = "v2.0"
   156    url = "https://skaffold-v2.web.app/"