pip install hyde
hyde -s path/to/source -d path/to/destination create
yaml
siteurl: 'http://example.com'
title: 'My Hyde Site'
author: 'John Doe'
markdown
# Hello, Hyde!
This is my first article generated by Hyde.
html
<!DOCTYPE html>
<html>
<head>
<title>{{ page.title }} - {{ site.title }}</title>
</head>
<body>
<h1>{{ page.title }}</h1>
<div>{{ page.content }}</div>
<footer>© {{ site.author }}</footer>
</body>
</html>
hyde -s path/to/source -d path/to/destination gen