From 666f0eb4e64d5534583836b845750a8d663d37b2 Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Wed, 25 Feb 2026 21:19:20 -0500 Subject: [PATCH] Fix admonition header block in index.md `!!! warn` not recognized by Documenter, switch to `!!! warning` --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index 9b55b1f..3cde63b 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -56,7 +56,7 @@ The `output_format=documenter_output` is used at various places which can all se - [Resample.jl](https://github.com/rikhuijzer/Resample.jl); for example output see the [SMOTE tutorial](https://rikhuijzer.github.io/Resample.jl/dev/notebooks/smote/). - [GraphNeuralNetworks.jl](https://github.com/CarloLucibello/GraphNeuralNetworks.jl) tutorials, see for example [Hand-On Graph Neural Networks](https://carlolucibello.github.io/GraphNeuralNetworks.jl/dev/tutorials/gnn_intro_pluto/). -!!! warn +!!! warning Avoid calling the conversion from inside a Documenter.jl code block. For some reason, that is likely to freeze or hang; probably due to `stdout` being flooded with information. Instead generate Markdown files via `docs/make.jl` and point to these files in `pages`.