| 1234567891011121314151617181920212223242526 |
- # cSpell:ignore github regexs
- CacheExpires: 9000h # ~ 12 months
- DirectoryPath: public
- CheckDoctype: false # Sadly, this is false only because of `static/google*.html`
- IgnoreAltMissing: true # FIXME
- IgnoreDirectoryMissingTrailingSlash: true # FIXME
- TestFilesConcurrently: true
- IgnoreDirs:
- - _print
- - ^blog/(\d+/)?page/\d+
- IgnoreEmptyHref: true # FIXME
- IgnoreInternalEmptyHash: true # FIXME
- IgnoreInternalURLs: # list of paths
- IgnoreURLs: # list of regexs of paths or URLs to be ignored
- - \?no-link-check
- - (index.xml|_print/)$ # ignore <link rel=alternate ...>
- - ^https?://[^/]+/(categories|tags)/ # ignore Docsy-generated content
- - ^https?://localhost\b
- # Ignore Docsy-generated GitHub links for now
- - ^https?://github\.com/.*?/.*?/(new|edit)/ # view-page, edit-source etc
- - ^https://twitter.com/docsydocs$
- # Too flaky or unnecessary
- - ^https://badges.netlify.com/api
- - ^https://code.jquery.com
- # TEMPORARY until we're done with https://github.com/google/docsy/issues/2243
- # - ^https://github.com/google/docsy/blob/main/layouts/.*_td-content-after-header.html$
|