Releases: hmsk/frontmatter-markdown-loader
Releases · hmsk/frontmatter-markdown-loader
v3.5.0 Require front-matter v4 and markdown-it v11
- Update dependencies
- front-matter:
^4.0.0
- markdown-it:
^11.0.0
- front-matter:
- Update some devDependencies
v3.4.3
- Fix the bug: The unintentional preserving of
<code>
on VUE_* mode - Update devDependencies
v3.4.2
v3.4.1
v3.4.0: Support react.root option
Add new option react.root
for the similar purpose of vue.root
.
options: {
mode: [Mode.REACT],
react: {
root: "importedFromMarkdown"
}
}
Imported React component renders a root element as div.importedFromMarkdown
The default class is .frontmatter-markdown
now. This change may be breaking change if you expected the root component doesn't have any class.
Other Changes
- Update devDependencies
v3.3.0: Update loader-utils
- Use
loader-utils: ^2.0.0
- This expects Node 8 as a result
Other Changes
- Update devDependencies
v3.2.1: Support old browsers
Get rid of an arrow function and Object.entries
from outputs to support old browsers more.
Thanks for your contribution! @austinsheep #120
Other changes
- Update devDependencies
v3.2.0: xhtmlOut: true for React mode as default
By #114, the default option for markdown-it on React mode gets { html: true, xhtmlOut: true }
automatically.
Other Changes
- Update devDependencies
- Remove the deprecated badge for Dev Protocol
v3.1.0: Remove unnecessary dependencies
As #78, remove optionalDependencies
to avoid installing unexpected modules. If your project uses a mode but the required modules are not installed, the loader throws an error for the project's build.
Other Changes
- Update dependencies