Is there a way to specify a value for a site variable on the ‘jekyll serve’ command line? Say I have a site variable named myInfo defined in my config.yml file:
myInfo: “Some default value”
I want to be able to change that value at build/serve time without editing the config file. So I’d like to be able to use a command line like this:
jekyll serve --config=_myconfig.yml myInfo=SomeInfo
Is there a way to do this?