We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
On all Scala 3 versions (currently up to 3.2.2), the scaladoc pages are missing the <!DOCTYPE html>
<!DOCTYPE html>
This forces browsers to render it in quirks mode
This was working fine on Scala 2.
The text was updated successfully, but these errors were encountered:
Fix: Add Doctype to be in standard mode (#17087)
0625d1c
In this PR, I added the `<!DOCTYPE html>` in the HtmlRenderer file. I combined in the def page content the tag html with all the content of the page (head, body,...) and the Doctype. ## Result : <img width="400" alt="Screenshot 2023-03-13 at 16 03 43" src="https://user-images.githubusercontent.com/44496264/224742326-280b1f86-e578-4f25-8d13-9ca39f6c0aec.png"> (On chrome) <img width="400" alt="Screenshot 2023-03-13 at 16 04 36" src="https://user-images.githubusercontent.com/44496264/224742405-c5dbc809-c085-4cde-aa4d-4faffc088682.png"> Fixes #16803
Fix: Add Doctype to be in standard mode (scala#17087)
dfcbcb1
In this PR, I added the `<!DOCTYPE html>` in the HtmlRenderer file. I combined in the def page content the tag html with all the content of the page (head, body,...) and the Doctype. ## Result : <img width="400" alt="Screenshot 2023-03-13 at 16 03 43" src="https://user-images.githubusercontent.com/44496264/224742326-280b1f86-e578-4f25-8d13-9ca39f6c0aec.png"> (On chrome) <img width="400" alt="Screenshot 2023-03-13 at 16 04 36" src="https://user-images.githubusercontent.com/44496264/224742405-c5dbc809-c085-4cde-aa4d-4faffc088682.png"> Fixes scala#16803
Florian3k
Successfully merging a pull request may close this issue.
On all Scala 3 versions (currently up to 3.2.2), the scaladoc pages are missing the
<!DOCTYPE html>
This forces browsers to render it in quirks mode
This was working fine on Scala 2.
The text was updated successfully, but these errors were encountered: