Skip to content

Remove redundant css tags

minsusun edited this page Feb 20, 2024 · 1 revision

Previous: redundant css tags(<style> </style>) & weird html tags

<html>
  <head>
    <style>
      ~
    </style>
  </head>
  <body>
    <html>
      <head>
      </head>
      <body class="markdown-body">
        <style>
           ~
        </style>
      </body>
    </html>
  </body>
</html>

Fixed: clean and fresh

<html>
  <head>
    <style>
      ~
    </style>
  </head>
  <body>
    ~
  </body>
</html>
Clone this wiki locally