Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ jobs:

- name: Build and Run tests
run: |
rm -rf _build/default/
mkdir $BISECT_DIR
dune build @all @runtest --force --instrument-with bisect_ppx
env:
Expand Down
1 change: 1 addition & 0 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build: build-books build-site

build-books:
mdbook build book/introduction-to-mdexp
cd ../test && mdbook build

build-site:
zola build
Expand Down
2 changes: 1 addition & 1 deletion doc/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
base_url = "https://mbarbin.github.io/mdexp/"

title = "mdexp"
description = "Literate Programming with Embedded Snapshots"
description = "Literate programming with embedded snapshots"

# The default language
default_language = "en"
Expand Down
2 changes: 1 addition & 1 deletion doc/content/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
+++
title = "mdexp — Literate Programming with Embedded Snapshots"
title = "Literate programming with embedded snapshots"
template = "index.html"
sort_by = "weight"
+++
Expand Down
6 changes: 6 additions & 0 deletions doc/content/resources/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,9 @@ what mdexp does and why it is useful. It walks through the core directives ---
prose, code blocks, and snapshots --- with concrete examples in OCaml.

**Authors:** Mathieu Barbin, Claude Opus 4.6 | **Audience:** New users

## [Test Suite](../book/test-suite/)

The internal test suite for mdexp, using mdexp of course.

**Authors:** Mathieu Barbin, Claude Opus 4.7 | **Audience:** Mdexp developers and contributors
1 change: 1 addition & 0 deletions doc/static/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
book/
10 changes: 10 additions & 0 deletions test/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.PHONY: build serve clean

build:
mdbook build

serve:
mdbook serve --open

clean:
mdbook clean
2 changes: 1 addition & 1 deletion test/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mdexp Test Suite
# Mdexp Test Suite

This book contains the test suite for mdexp, organized as documentation.

Expand Down
8 changes: 6 additions & 2 deletions test/book.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
[book]
title = "mdexp Test Suite"
title = "Mdexp Test Suite"
authors = ["Mathieu Barbin"]
language = "en"
src = "."

[build]
build-dir = "book"
build-dir = "../doc/static/book/test-suite"

[output.html]
git-repository-url = "https://github.com/mbarbin/mdexp"
default-theme = "light"
preferred-dark-theme = "navy"
theme = "../doc/book/shared-theme"
additional-js = ["../doc/book/shared-theme/ansi-plugin.js"]

[output.html.fold]
enable = true
level = 0