Skip to content
New issue

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

Header attribute doesn't work inside blockquote #1711

Closed
rgaiacs opened this issue Oct 23, 2014 · 1 comment
Closed

Header attribute doesn't work inside blockquote #1711

rgaiacs opened this issue Oct 23, 2014 · 1 comment

Comments

@rgaiacs
Copy link
Contributor

rgaiacs commented Oct 23, 2014

Steps to Reproduce

$ pandoc --version
pandoc 1.13.1
$ cat sample.md 
# Title Sample {.my-title-class}
$ pandoc -f markdown -t html5 -o sample.html sample.md                                                          
$ cat quote-sample.md 
> # Title Sample {.my-title-class}
$ pandoc -f markdown -t html5 -o quote-sample.html quote-sample.md

Actual Results

$ cat sample.html 
<h1 id="title-sample" class="my-title-class">Title Sample</h1>
$ cat quote-sample.html 
<blockquote>
<h1>Title Sample</h1>
</blockquote>

Expected Results

$ cat sample.html 
<h1 id="title-sample" class="my-title-class">Title Sample</h1>
$ cat quote-sample.html 
<blockquote>
<h1 id="title-sample" class="my-title-class">Title Sample</h1>
</blockquote>
@rgaiacs
Copy link
Contributor Author

rgaiacs commented Oct 24, 2014

@jgm Thanks a lot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant