Skip to content

Commit 86225f8

Browse files
committed
changed env to html and added newline in docs
1 parent 2f493b3 commit 86225f8

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

docs/source/options.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,13 @@ prf_realtyp_to_countertyp = {
7676
7777
````{warning}
7878
The association of a counter to a directive is not transitive: Let us consider the following configuration:
79+
7980
```
8081
prf_realtyp_to_countertyp = {
8182
"lemma": "theorem",
8283
"conjecture": "lemma",
8384
}
8485
```
86+
8587
The `lemma` and `theorem` directives share a counter, however the `conjecture` directive has a separate counter (the `lemma` counter which is **not** used by `lemma` directives).
8688
````

sphinx_proof/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def copy_asset_files(app: Sphinx, exc: Union[bool, Exception]):
8181
def setup(app: Sphinx) -> Dict[str, Any]:
8282

8383
app.add_config_value("proof_minimal_theme", False, "html")
84-
app.add_config_value("prf_realtyp_to_countertyp", {}, "env")
84+
app.add_config_value("prf_realtyp_to_countertyp", {}, "html")
8585

8686
app.add_css_file("proof.css")
8787
app.connect("build-finished", copy_asset_files)

0 commit comments

Comments
 (0)