ssg: StaticSiteClient: support extended entries
This commit is contained in:
parent
aed86f9b3b
commit
66e69f30bd
|
@ -433,14 +433,13 @@ namespace OpenLiveWriter.BlogClient.Clients.StaticSite
|
||||||
clientOptions.SupportsFileUpload = Config.ImagesEnabled;
|
clientOptions.SupportsFileUpload = Config.ImagesEnabled;
|
||||||
clientOptions.SupportsImageUpload = Config.ImagesEnabled ? SupportsFeature.Yes : SupportsFeature.No;
|
clientOptions.SupportsImageUpload = Config.ImagesEnabled ? SupportsFeature.Yes : SupportsFeature.No;
|
||||||
clientOptions.SupportsScripts = clientOptions.SupportsEmbeds = SupportsFeature.Yes;
|
clientOptions.SupportsScripts = clientOptions.SupportsEmbeds = SupportsFeature.Yes;
|
||||||
|
clientOptions.SupportsExtendedEntries = true;
|
||||||
|
|
||||||
// Categories treated as tags for the time being
|
|
||||||
clientOptions.SupportsCategories = true;
|
clientOptions.SupportsCategories = true;
|
||||||
clientOptions.SupportsMultipleCategories = true;
|
clientOptions.SupportsMultipleCategories = true;
|
||||||
clientOptions.SupportsNewCategories = true;
|
clientOptions.SupportsNewCategories = true;
|
||||||
clientOptions.SupportsKeywords = false;
|
clientOptions.SupportsKeywords = false;
|
||||||
|
|
||||||
// The follwoing values would be written into YAML front-matter
|
|
||||||
clientOptions.FuturePublishDateWarning = true;
|
clientOptions.FuturePublishDateWarning = true;
|
||||||
clientOptions.SupportsCustomDate = clientOptions.SupportsCustomDateUpdate = true;
|
clientOptions.SupportsCustomDate = clientOptions.SupportsCustomDateUpdate = true;
|
||||||
clientOptions.SupportsSlug = true;
|
clientOptions.SupportsSlug = true;
|
||||||
|
|
Loading…
Reference in New Issue