Skip to content

Commit 2fdbcc1

Browse files
committed
Try better config
1 parent 9c16400 commit 2fdbcc1

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

.github/workflows/blueprint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
uses: jcreedcmu/docgen-action@main
3838
with:
3939
lake-package-directory: inner_directory
40-
blueprint: true
4140
homepage: inner_directory/home_page
41+
blueprint: true
4242
api-docs: true

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
11
/inner_directory/.lake
2+
inner_directory/blueprint/print
3+
inner_directory/blueprint/web
4+
inner_directory/blueprint/src/web.paux
5+
inner_directory/blueprint/src/web.bbl
6+
inner_directory/blueprint/lean_decls
7+
texput.log
8+
9+
# These are created if you manually run tex in blueprint/src
10+
inner_directory/blueprint/src/print.aux
11+
inner_directory/blueprint/src/print.bbl
12+
inner_directory/blueprint/src/print.blg
13+
inner_directory/blueprint/src/print.log
14+
inner_directory/blueprint/src/print.out
15+
inner_directory/blueprint/src/print.pdf
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1-
-- This module serves as the root of the `BlueprintDebug` library.
2-
-- Import modules here that should be built as part of the library.
1+
import Mathlib.Analysis.SpecialFunctions.Trigonometric.Basic
32
import BlueprintDebug.Basic
3+
4+
open Real
5+
6+
/--
7+
Some docstring for this guy
8+
-/
9+
noncomputable
10+
def foobar := 123 + π

inner_directory/blueprint/src/content.tex

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@
44
%
55
% If you want to split the blueprint content into several files then
66
% the current file can be a simple sequence of \input. Otherwise It
7-
% can start with a \section or \chapter for instance.
7+
% can start with a \section or \chapter for instance.
8+
9+
\begin{definition}
10+
Define {\em foobar} to be $123 + \pi$.
11+
\lean{foobar}
12+
\end{definition}

0 commit comments

Comments
 (0)