go-org-orgwiki/blorg/testdata/public/post.html
Niklas Fasching a383eef7a6 html: Remove cosmetic whitespace inside p tags
All tags are put on a line by themselves to help with visual
diffing. Apparently this extra cosmetic whitespace causes problems inside p
tags for ppl who want to use `white-space: pre`. Not much hurt for visual
diffing in removing cosmetic whitespace for just p tags and can't think of
anything that would break because of this right now. So let's do it and wait
for things to break.
2020-06-26 18:55:15 +02:00

32 lines
671 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/style.css" type="text/css" />
<title>some post</title>
</head>
<body>
<header class='header'>
<a class="logo" href="/">home</a>
<nav>
<a href="https://www.github.com/niklasfasching">github</a>
<a href="/about">about</a>
</nav>
</header>
<div class="container">
<h1 class="title">some post
<br>
<span class="subtitle"></span>
</h1>
<ul class="tags">
</ul>
<h1 class="title"><p>some post</p>
</h1>
</div>
</body>
</html>