As a user coming from hexo, I want to be able to set the type of documents based on the document id (filename), so that I can used the same folder structure (posts in _posts/)
interface idTypeMapping {
/// Regular expression string to map ids to the type
[type: string]: string,
/// Default type for documents
default: string
}
As a user coming from hexo, I want to be able to set the type of documents based on the document id (filename), so that I can used the same folder structure (posts in
_posts/
)