feat(blog): warn duplicate and inline authors (#10224)

Co-authored-by: OzakIOne <OzakIOne@users.noreply.github.com>
Co-authored-by: sebastien <lorber.sebastien@gmail.com>
This commit is contained in:
ozaki 2024-06-27 11:40:18 +02:00 committed by GitHub
parent 1405b25fc7
commit de59621fbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 299 additions and 21 deletions

View file

@ -28,7 +28,7 @@ export type TagsPluginOptions = {
// TODO allow option tags later? | TagsFile;
/** Path to the tags file. */
tags: string | false | null | undefined;
/** The behavior of Docusaurus when it found inline tags. */
/** The behavior of Docusaurus when it finds inline tags. */
onInlineTags: 'ignore' | 'log' | 'warn' | 'throw';
};