First pass at md to html conversion

This commit is contained in:
Drew Galbraith 2023-05-03 17:20:12 -07:00
parent be11a2ee83
commit 25a8a078bb
13 changed files with 256 additions and 3 deletions

View file

@ -1,9 +1,8 @@
---
title: Writing a Sudoku Solver
title: "Writing a Sudoku Solver: Displaying the Grid"
date: 2023-04-10
---
# Writing a Sudoku Solver: Displaying the Grid
I previously dabbled with writing a [sudoku solver](https://gitlab.com/dgalbraith33/sudoku-solver)
but got carried away early on by making crazy speed improvements rather than actually improving the
solving ability. What I did enjoy about the project is making logical deductions rather than the

17
blog/pandoc.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
$-- Run with the following command:
$-- pandoc -s --template=blog/pandoc.html -o public/blog/sudoku.html blog/2023-04-10-sudoku.md
<html>
<head>
<meta charset="utf-8" />
<title>$title$</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<div class="container">
<h1 class="page-title">$title$</h1>
<div class="date">Published $date$</div>
$body$
</div>
</body>
</html>