Skip to content

Commit

Permalink
chore: minor documentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishb committed Aug 21, 2024
1 parent 379cc45 commit 474d3fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wp2hugo/cmd/wp2hugo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (

var (
sourceFile = flag.String("source", "", "file path to the source WordPress XML file")
outputDir = flag.String("output", "/tmp", "dir path to the write the Hugo generated data to")
outputDir = flag.String("output", "/tmp", "dir path to write the Hugo-generated data to")
downloadMedia = flag.Bool("download-media", false, "download media files embedded in the WordPress content")
continueOnMediaDownloadFailure = flag.Bool("continue-on-media-download-error", false, "continue processing even if one more more media download fails")
continueOnMediaDownloadFailure = flag.Bool("continue-on-media-download-error", false, "continue processing even if one or more media downloads fail")
authors = flag.String("authors", "", "CSV list of author name(s), if provided, only posts by these authors will be processed")
// This is useful for repeated executions of the tool to avoid downloading the media files again
// Mostly for development and not for the production use
Expand Down

0 comments on commit 474d3fc

Please sign in to comment.