#programming
I was trying to update my microblog generator for semantic html elements by testing it with Firefox's Reader Mode. After spending more hours than I should editing `template.tpl`, `settings.toml` or `timeline.css`, I decided to test with my `content.txt` instead of the repo's `demo.txt`
I found out Firefox's Reader Mode's algo considers the quantity of content. It literally didn't work for this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Page for Reader Mode</title>
</head>
<body>
<header>
<h1>Welcome to Minimal Working Example</h1>
</header>
<main>
<article>
<h2>Introduction</h2>
<p>This is a sample article for testing Firefox Reader Mode.</p>
</article>
</main>
<footer>
<p>© 2024 literal who</p>
</footer>
</body>
</html>