We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using a block inside of the <title> (like in #31) leads to an error on compiling.
<title>
ERROR in Error: Child compilation failed: Module build failed (from ./node_modules/posthtml-loader/lib/index.js): PostHTML Loader: [posthtml-extend] Unexpected block "title" - PostHTML Loader: - [posthtml-extend] Unexpected block "title" - ModuleBuildError: Module build failed (from ./node_modules/posthtml-loader/lib/index.js): - PostHTML Loader: - [posthtml-extend] Unexpected block "title"
This seems to be an issue in posthtml-parser as mentioned here.
posthtml-parser
The text was updated successfully, but these errors were encountered:
For now changing
<!-- layout.html --> <title><block name="title"></block ></title>
to
<!-- layout.html --> <block name="title"></block> <!-- index.html --> <block name="title"><title>Page title</title></block>
needs to do the trick. To fix this properly we need a fix for the issue in posthtml-parser.
Sorry, something went wrong.
No branches or pull requests
Using a block inside of the
<title>
(like in #31) leads to an error on compiling.This seems to be an issue in
posthtml-parser
as mentioned here.The text was updated successfully, but these errors were encountered: