Skip to content

Commit

Permalink
feat: Document Liquid template functions (#35)
Browse files Browse the repository at this point in the history
* add method to return registered filters info

* fix condition

* add make target to generate docs

* add docs

* add more docs

* add fixme

* add docs to result

* update struct

* add more docs

* save to file

* move docs

* update docs

* update docs

* update docs

* add missing quote mark

* extract functions

* add check if docs are up-to-date

* update docs

* point to make target

* update dependencies

* escape new line char

* remove duplicated import

* remove unused file
  • Loading branch information
maciaszczykm authored Sep 23, 2024
1 parent 040559a commit 4b6aa24
Show file tree
Hide file tree
Showing 10 changed files with 1,846 additions and 91 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ release-vsn: # tags and pushes a new release
git checkout main; \
git pull --rebase; \
git tag -a $$tag -m "new release"; \
git push origin $$tag
git push origin $$tag

gen-docs: # generates docs for registered liquid template functions
go run github.com/pluralsh/polly/internal/template
Loading

0 comments on commit 4b6aa24

Please sign in to comment.