Remove disableRSS etc. from the documentation

They was deprecated and then removed.

Fixes https://github.com/gohugoio/hugo/issues/4419
This commit is contained in:
Bjørn Erik Pedersen 2018-02-17 13:40:37 +01:00
parent 4945e7937c
commit 5f70e6ee2c
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
2 changed files with 7 additions and 22 deletions

View File

@ -79,16 +79,10 @@ defaultContentLanguage: "en"
# Renders the default content language in subdir, e.g. /en/. The root directory / will redirect to /en/ # Renders the default content language in subdir, e.g. /en/. The root directory / will redirect to /en/
defaultContentLanguageInSubdir: false defaultContentLanguageInSubdir: false
disableLiveReload: false disableLiveReload: false
# Do not build RSS files
disableRSS: false
# Do not build Sitemap file
disableSitemap: false
# Enable GitInfo feature # Enable GitInfo feature
enableGitInfo: false enableGitInfo: false
# Build robots.txt file # Build robots.txt file
enableRobotsTXT: false enableRobotsTXT: false
# Do not render 404 page
disable404: false
# Do not inject generator meta tag on homepage # Do not inject generator meta tag on homepage
disableHugoGeneratorInject: false disableHugoGeneratorInject: false
# Allows you to disable all page types and will render nothing related to 'kind'; # Allows you to disable all page types and will render nothing related to 'kind';
@ -221,16 +215,10 @@ defaultContentLanguage = "en"
# Renders the default content language in subdir, e.g. /en/. The root directory / will redirect to /en/ # Renders the default content language in subdir, e.g. /en/. The root directory / will redirect to /en/
defaultContentLanguageInSubdir = false defaultContentLanguageInSubdir = false
disableLiveReload = false disableLiveReload = false
# Do not build RSS files
disableRSS = false
# Do not build Sitemap file
disableSitemap = false
# Enable GitInfo feature # Enable GitInfo feature
enableGitInfo = false enableGitInfo = false
# Build robots.txt file # Build robots.txt file
enableRobotsTXT = false enableRobotsTXT = false
# Do not render 404 page
disable404 = false
# Do not inject generator meta tag on homepage # Do not inject generator meta tag on homepage
disableHugoGeneratorInject = false disableHugoGeneratorInject = false
# Allows you to disable all page types and will render nothing related to 'kind'; # Allows you to disable all page types and will render nothing related to 'kind';

View File

@ -44,6 +44,7 @@ Usage:
Available Commands: Available Commands:
benchmark Benchmark Hugo by building a site a number of times. benchmark Benchmark Hugo by building a site a number of times.
check Contains some verification checks
config Print the site configuration config Print the site configuration
convert Convert your content to different formats convert Convert your content to different formats
env Print Hugo version and environment info env Print Hugo version and environment info
@ -61,18 +62,16 @@ Flags:
-E, --buildExpired include expired content -E, --buildExpired include expired content
-F, --buildFuture include content with publishdate in the future -F, --buildFuture include content with publishdate in the future
--cacheDir string filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/ --cacheDir string filesystem path to cache directory. Defaults: $TMPDIR/hugo_cache/
--canonifyURLs if true, all relative URLs will be canonicalized using baseURL --canonifyURLs (deprecated) if true, all relative URLs will be canonicalized using baseURL
--cleanDestinationDir remove files from destination not found in static directories --cleanDestinationDir remove files from destination not found in static directories
--config string config file (default is path/config.yaml|json|toml) --config string config file (default is path/config.yaml|json|toml)
-c, --contentDir string filesystem path to content directory -c, --contentDir string filesystem path to content directory
--debug debug output --debug debug output
-d, --destination string filesystem path to write files to -d, --destination string filesystem path to write files to
--disable404 do not render 404 page
--disableKinds stringSlice disable different kind of pages (home, RSS etc.) --disableKinds stringSlice disable different kind of pages (home, RSS etc.)
--disableRSS do not build RSS files
--disableSitemap do not build Sitemap file
--enableGitInfo add Git revision, date and author info to the pages --enableGitInfo add Git revision, date and author info to the pages
--forceSyncStatic copy all files when static is changed. --forceSyncStatic copy all files when static is changed.
--gc enable to run some cleanup tasks (remove unused cache files) after the build
-h, --help help for hugo -h, --help help for hugo
--i18n-warnings print missing translations --i18n-warnings print missing translations
--ignoreCache ignores the cache directory --ignoreCache ignores the cache directory
@ -81,23 +80,21 @@ Flags:
--logFile string log File path (if set, logging enabled automatically) --logFile string log File path (if set, logging enabled automatically)
--noChmod don't sync permission mode of files --noChmod don't sync permission mode of files
--noTimes don't sync modification time of files --noTimes don't sync modification time of files
--pluralizeListTitles pluralize titles in lists using inflect (default true) --pluralizeListTitles (deprecated) pluralize titles in lists using inflect (default true)
--preserveTaxonomyNames preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu") --preserveTaxonomyNames (deprecated) preserve taxonomy names as written ("Gérard Depardieu" vs "gerard-depardieu")
--quiet build in quiet mode --quiet build in quiet mode
--renderToMemory render to memory (only useful for benchmark testing) --renderToMemory render to memory (only useful for benchmark testing)
-s, --source string filesystem path to read files relative from -s, --source string filesystem path to read files relative from
--stepAnalysis display memory and timing of different steps of the program --stepAnalysis display memory and timing of different steps of the program
--templateMetrics display metrics about template executions --templateMetrics display metrics about template executions
--templateMetricsHints calculate some improvement hints when combined with --templateMetrics
-t, --theme string theme to use (located in /themes/THEMENAME/) -t, --theme string theme to use (located in /themes/THEMENAME/)
--themesDir string filesystem path to themes directory --themesDir string filesystem path to themes directory
--uglyURLs if true, use /filename.html instead of /filename/ --uglyURLs (deprecated) if true, use /filename.html instead of /filename/
-v, --verbose verbose output -v, --verbose verbose output
--verboseLog verbose logging --verboseLog verbose logging
-w, --watch watch filesystem for changes and recreate as needed -w, --watch watch filesystem for changes and recreate as needed
Additional help topics:
hugo check Contains some verification checks
Use "hugo [command] --help" for more information about a command. Use "hugo [command] --help" for more information about a command.
``` ```