hexojs / hexo-renderer-markdown-it

Markdown-it is a Markdown parser, done right. A faster and CommonMark compliant alternative for Hexo.
MIT License
341 stars 60 forks source link

Configuration names can conflict with a plug-in's schema. #139

Closed Yanren1225 closed 3 years ago

Yanren1225 commented 3 years ago

Like this: image_11.png

The name of the plug-in is YAML-Red Hat

It seems that markdown: is recognized as the Markdown Processor for this plug-in model.

Is it possible to change markdown: to markdown-it: or something else?

SukkaW commented 3 years ago

Although markdown might be conflicted with some YAML processing plugin, but technically markdown is not a reserved keyword, thus it is not violating the YAML spec.

Please consider uninstall the plugin you used, since it treat markdown as a reserved keyword which is violating the YAML spec.

Yanren1225 commented 3 years ago

Although markdown might be conflicted with some YAML processing plugin, but technically markdown is not a reserved keyword, thus it is not violating the YAML spec.

Considering uninstall that plugin instead since it treat markdown as a reserved keyword, which is violating the YAML spec.

thx