gitextract_svh9gyz7/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── goreleaser.yml │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── docs/ │ └── development/ │ └── README.md ├── examples/ │ ├── ascii_slides.md │ ├── code_blocks.md │ ├── custom_remote_theme.md │ ├── custom_theme.md │ ├── import.md │ ├── metadata.md │ ├── preprocess.md │ ├── slides.md │ └── theme.json ├── go.mod ├── go.sum ├── internal/ │ ├── cmd/ │ │ └── serve.go │ ├── code/ │ │ ├── code.go │ │ ├── code_test.go │ │ ├── comments.go │ │ ├── comments_test.go │ │ ├── execute_test.go │ │ └── languages.go │ ├── file/ │ │ ├── file.go │ │ └── file_test.go │ ├── meta/ │ │ ├── meta.go │ │ └── meta_test.go │ ├── model/ │ │ ├── model.go │ │ └── tutorial.md │ ├── navigation/ │ │ ├── navigation.go │ │ ├── navigation_test.go │ │ ├── search.go │ │ └── search_test.go │ ├── process/ │ │ ├── execute_test.go │ │ ├── process.go │ │ └── process_test.go │ └── server/ │ ├── middleware.go │ └── server.go ├── main.go ├── snap/ │ └── snapcraft.yaml └── styles/ ├── styles.go ├── styles_test.go └── theme.json