We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yyx990803
kiaking
brc-dd
posva
Learn more about funding links in repositories.
Report abuse
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
When including b.md inside a.md, the frontmatter of b.md is included literally.
b.md
a.md
Create the file a.md:
--- title: A --- This is the a.md file <!--@include: ./b.md-->
Now create the file b.md:
--- title: B --- This is the b.md file
The resulting HTML looks like this:
<p>This is the a.md file</p> <h2> title: B </h2> <p>This is the b.md file</p>
The frontmatter in the included file (b.md) should be ignored.
System: OS: Linux 6.2 Ubuntu 22.04.3 LTS 22.04.3 LTS (Jammy Jellyfish) CPU: (8) x64 Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz Memory: 9.96 GB / 15.49 GB Container: Yes Shell: 5.1.16 - /bin/bash Binaries: Node: 20.5.1 - /usr/bin/node npm: 9.6.6 - ~/node_modules/.bin/npm Browsers: Chromium: 119.0.6045.105
No response
The text was updated successfully, but these errors were encountered:
dbbffa2
No branches or pull requests
Describe the bug
When including
b.md
insidea.md
, the frontmatter ofb.md
is included literally.Reproduction
Create the file
a.md
:Now create the file
b.md
:The resulting HTML looks like this:
Expected behavior
The frontmatter in the included file (
b.md
) should be ignored.System Info
Additional context
No response
Validations
The text was updated successfully, but these errors were encountered: