From c970807a0d626b8f4be8e315fb959bce90c8caf9 Mon Sep 17 00:00:00 2001 From: "Matthieu C." <886074+teto@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:38:13 +0200 Subject: [PATCH] feat: add Makefile to be able to regen the doc locally the user still has to install the deps (e.g. `nix shell nixpkgs#panvimdoc` with nix) but then can run `make doc`. It duplicates the info in .github/workflows/docgen.yml (which is why I usually have the CI call the project scripts instead, makes reproducing CI easier). In this case it's small so should be fine. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ff32d2d --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +doc: README.md + panvimdoc --project-name gp.nvim --vim-version "neovim" --input-file README.md --demojify true --treesitter true --doc-mapping true --doc-mapping-project-name true --dedup-subheadings true