(new Converter()).AddConfig("appsettings.json").AddFiles().AddStaticPages().BuildAsync()
Currently adding (copying) files and static page feature does not exist - will be added
Converting content is always as default, so doesn't need to be added
Better if Initialize() or CleanAsync() works in this way too.
Second plan is changing tags / recent pages like this.
(new Converter()).AddConfig("appsettings.json").AddContentServices(/* ContentManager like TagManager or RecentPageManager */).AddContentServices(/* IEnumerable<ContentManager> */).BuildAsync()
The settings file will be affected and more complicated to edit, as well as the priority of this feature is low (this can be started when the first feature is done, at least).
Currently the pattern is simply like this:
The plan is editing the syntax into:
Initialize()
orCleanAsync()
works in this way too.Second plan is changing tags / recent pages like this.
The settings file will be affected and more complicated to edit, as well as the priority of this feature is low (this can be started when the first feature is done, at least).