mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Add test for line anchor attributes with code fences
Fixes https://github.com/gohugoio/hugo/issues/9385.
This commit is contained in:
parent
7248f43188
commit
6bffcdbd26
1 changed files with 10 additions and 0 deletions
|
@ -278,6 +278,16 @@ func TestConvertAttributes(t *testing.T) {
|
||||||
"table style",
|
"table style",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Code block, CodeFences=true,lineanchors",
|
||||||
|
func(conf *markup_config.Config) {
|
||||||
|
withBlockAttributes(conf)
|
||||||
|
conf.Highlight.CodeFences = true
|
||||||
|
conf.Highlight.NoClasses = false
|
||||||
|
},
|
||||||
|
"```bash {linenos=table, anchorlinenos=true, lineanchors=org-coderef--xyz}\necho 'foo';\n```",
|
||||||
|
"<div class=\"highlight\"><div class=\"chroma\">\n<table class=\"lntable\"><tr><td class=\"lntd\">\n<pre tabindex=\"0\" class=\"chroma\"><code><span class=\"lnt\" id=\"org-coderef--xyz-1\"><a style=\"outline: none; text-decoration:none; color:inherit\" href=\"#org-coderef--xyz-1\">1</a>\n</span></code></pre></td>\n<td class=\"lntd\">\n<pre tabindex=\"0\" class=\"chroma\"><code class=\"language-bash\" data-lang=\"bash\"><span class=\"line\"><span class=\"cl\"><span class=\"nb\">echo</span> <span class=\"s1\">'foo'</span><span class=\"p\">;</span>\n</span></span></code></pre></td></tr></table>\n</div>\n</div>",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Paragraph",
|
"Paragraph",
|
||||||
withBlockAttributes,
|
withBlockAttributes,
|
||||||
|
|
Loading…
Reference in a new issue