You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---title: Some Title | sitename.com---# Some Header
bla
Then for some time now(in 4.39.0 it's ok) the cli has been throwing out the h1 that is already on the page and writing title instead
That is, the page is converted to
<html><head><title>Some Title | sitename.com </title></head><body><h1>Some Title | sitename.com </h1></body>
and Some Header is thrown out altogether
And it behaves somewhat randomly. Sometimes both headers are present on the page:
<html><head><title>Some Title | sitename.com </title></head><body><h1>Some Title | sitename.com </h1><h1>Some Header</h1></body>
We expect that if we have h1 set, then it remains, and the expected document structure is:
<html><head><title>Some Title | sitename.com </title></head><body><h1>Some Header</h1>
The text was updated successfully, but these errors were encountered:
If we have a file like this:
Then for some time now(in 4.39.0 it's ok) the cli has been throwing out the h1 that is already on the page and writing title instead
That is, the page is converted to
and
Some Header
is thrown out altogetherAnd it behaves somewhat randomly. Sometimes both headers are present on the page:
We expect that if we have h1 set, then it remains, and the expected document structure is:
The text was updated successfully, but these errors were encountered: