Closed ThomasJRyan closed 2 months ago
Currently, if you provide html_head to the RapidHTML class and then one of your route returns a Head() tag, you'll get two <head> tags in the <html> tag which is probably bad practice
html_head
RapidHTML
Head()
<head>
<html>
This can be seen here https://github.com/ONTechNITS/RapidHTML/tree/master/examples/modern_table
We need to look for a <head> tag in a constructed Html() object and merge the contents of Head() and html_head together
Html()
Currently, if you provide
html_head
to theRapidHTML
class and then one of your route returns aHead()
tag, you'll get two<head>
tags in the<html>
tag which is probably bad practiceThis can be seen here https://github.com/ONTechNITS/RapidHTML/tree/master/examples/modern_table
We need to look for a
<head>
tag in a constructedHtml()
object and merge the contents ofHead()
andhtml_head
together