Currently some of the commands on the blogmore command line have all the switches when they don't need them all. While, for example, build and serve both need every switch that relates to generating the site, there are other commands that need to perform generation that don't really need all of those switches.
For example, there's no reason the lint or dump commands need the --socials-title, --links-title or --icon-source switches. At least, I can't think of a good reason why they would.
Look at breaking down the generation-oriented switches to those that are necessary for core site generation (which is needed for linting and dumping, for example) and those that are more cosmetic-oriented.
This should then help make some of the --help output easier to follow.
Currently some of the commands on the
blogmorecommand line have all the switches when they don't need them all. While, for example,buildandserveboth need every switch that relates to generating the site, there are other commands that need to perform generation that don't really need all of those switches.For example, there's no reason the
lintordumpcommands need the--socials-title,--links-titleor--icon-sourceswitches. At least, I can't think of a good reason why they would.Look at breaking down the generation-oriented switches to those that are necessary for core site generation (which is needed for linting and dumping, for example) and those that are more cosmetic-oriented.
This should then help make some of the
--helpoutput easier to follow.