├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── docs ├── DaisyUiSupport.md ├── References.md └── examples │ ├── core.md │ └── template-spp.md ├── include ├── extern │ ├── clib.h │ ├── cmark │ │ ├── buffer.h │ │ ├── chunk.h │ │ ├── cmark.h │ │ ├── cmark_ctype.h │ │ ├── houdini.h │ │ ├── inlines.h │ │ ├── iterator.h │ │ ├── node.h │ │ ├── parser.h │ │ ├── references.h │ │ ├── render.h │ │ ├── scanners.h │ │ └── utf8.h │ └── httpd.h ├── webc-actions.h ├── webc-core.h ├── webc-md.h ├── webc-server.h ├── webc-templates │ ├── blog.h │ ├── markdown.h │ ├── pss.h │ ├── spp.h │ └── template.h └── webc-ui.h ├── lib └── libcmark.a ├── src ├── actions │ ├── args.c │ ├── export.c │ └── route.c ├── core │ ├── attribute.c │ ├── elements.c │ ├── tags.c │ └── utils.c ├── md │ └── md.c ├── server │ ├── daemon.c │ ├── httpd-extensions.c │ └── serve.c ├── templates │ ├── blog │ │ ├── blog.c │ │ └── utils.c │ ├── markdown │ │ └── markdown.c │ ├── pss │ │ └── pss.c │ ├── spp │ │ ├── content.c │ │ ├── sidebar.c │ │ └── spp.c │ └── template.c └── ui │ └── daisy │ ├── accordion.c │ ├── alert.c │ ├── avatar.c │ ├── badge.c │ ├── button.c │ ├── carousel.c │ ├── chat-bubble.c │ ├── checkbox.c │ ├── code.c │ ├── collapse.c │ ├── dropdown.c │ ├── file-input.c │ ├── footer.c │ ├── indicator.c │ ├── loading.c │ ├── modal.c │ ├── navbar.c │ ├── pagination.c │ ├── progress.c │ ├── radio.c │ ├── range.c │ ├── select.c │ ├── text-input.c │ ├── textarea.c │ ├── theme-controller.c │ ├── toast.c │ ├── toggle.c │ ├── tooltip.c │ └── utils.c ├── style ├── github-markdown.css ├── markdown.css ├── pss-style.css └── spp-style.css └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/README.md -------------------------------------------------------------------------------- /docs/DaisyUiSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/docs/DaisyUiSupport.md -------------------------------------------------------------------------------- /docs/References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/docs/References.md -------------------------------------------------------------------------------- /docs/examples/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/docs/examples/core.md -------------------------------------------------------------------------------- /docs/examples/template-spp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/docs/examples/template-spp.md -------------------------------------------------------------------------------- /include/extern/clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/clib.h -------------------------------------------------------------------------------- /include/extern/cmark/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/buffer.h -------------------------------------------------------------------------------- /include/extern/cmark/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/chunk.h -------------------------------------------------------------------------------- /include/extern/cmark/cmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/cmark.h -------------------------------------------------------------------------------- /include/extern/cmark/cmark_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/cmark_ctype.h -------------------------------------------------------------------------------- /include/extern/cmark/houdini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/houdini.h -------------------------------------------------------------------------------- /include/extern/cmark/inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/inlines.h -------------------------------------------------------------------------------- /include/extern/cmark/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/iterator.h -------------------------------------------------------------------------------- /include/extern/cmark/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/node.h -------------------------------------------------------------------------------- /include/extern/cmark/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/parser.h -------------------------------------------------------------------------------- /include/extern/cmark/references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/references.h -------------------------------------------------------------------------------- /include/extern/cmark/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/render.h -------------------------------------------------------------------------------- /include/extern/cmark/scanners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/scanners.h -------------------------------------------------------------------------------- /include/extern/cmark/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/cmark/utf8.h -------------------------------------------------------------------------------- /include/extern/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/extern/httpd.h -------------------------------------------------------------------------------- /include/webc-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-actions.h -------------------------------------------------------------------------------- /include/webc-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-core.h -------------------------------------------------------------------------------- /include/webc-md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-md.h -------------------------------------------------------------------------------- /include/webc-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-server.h -------------------------------------------------------------------------------- /include/webc-templates/blog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-templates/blog.h -------------------------------------------------------------------------------- /include/webc-templates/markdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-templates/markdown.h -------------------------------------------------------------------------------- /include/webc-templates/pss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-templates/pss.h -------------------------------------------------------------------------------- /include/webc-templates/spp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-templates/spp.h -------------------------------------------------------------------------------- /include/webc-templates/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-templates/template.h -------------------------------------------------------------------------------- /include/webc-ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/include/webc-ui.h -------------------------------------------------------------------------------- /lib/libcmark.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/lib/libcmark.a -------------------------------------------------------------------------------- /src/actions/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/actions/args.c -------------------------------------------------------------------------------- /src/actions/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/actions/export.c -------------------------------------------------------------------------------- /src/actions/route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/actions/route.c -------------------------------------------------------------------------------- /src/core/attribute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/core/attribute.c -------------------------------------------------------------------------------- /src/core/elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/core/elements.c -------------------------------------------------------------------------------- /src/core/tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/core/tags.c -------------------------------------------------------------------------------- /src/core/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/core/utils.c -------------------------------------------------------------------------------- /src/md/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/md/md.c -------------------------------------------------------------------------------- /src/server/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/server/daemon.c -------------------------------------------------------------------------------- /src/server/httpd-extensions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/server/httpd-extensions.c -------------------------------------------------------------------------------- /src/server/serve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/server/serve.c -------------------------------------------------------------------------------- /src/templates/blog/blog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/blog/blog.c -------------------------------------------------------------------------------- /src/templates/blog/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/blog/utils.c -------------------------------------------------------------------------------- /src/templates/markdown/markdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/markdown/markdown.c -------------------------------------------------------------------------------- /src/templates/pss/pss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/pss/pss.c -------------------------------------------------------------------------------- /src/templates/spp/content.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/spp/content.c -------------------------------------------------------------------------------- /src/templates/spp/sidebar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/spp/sidebar.c -------------------------------------------------------------------------------- /src/templates/spp/spp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/spp/spp.c -------------------------------------------------------------------------------- /src/templates/template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/templates/template.c -------------------------------------------------------------------------------- /src/ui/daisy/accordion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/accordion.c -------------------------------------------------------------------------------- /src/ui/daisy/alert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/alert.c -------------------------------------------------------------------------------- /src/ui/daisy/avatar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/avatar.c -------------------------------------------------------------------------------- /src/ui/daisy/badge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/badge.c -------------------------------------------------------------------------------- /src/ui/daisy/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/button.c -------------------------------------------------------------------------------- /src/ui/daisy/carousel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/carousel.c -------------------------------------------------------------------------------- /src/ui/daisy/chat-bubble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/chat-bubble.c -------------------------------------------------------------------------------- /src/ui/daisy/checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/checkbox.c -------------------------------------------------------------------------------- /src/ui/daisy/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/code.c -------------------------------------------------------------------------------- /src/ui/daisy/collapse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/collapse.c -------------------------------------------------------------------------------- /src/ui/daisy/dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/dropdown.c -------------------------------------------------------------------------------- /src/ui/daisy/file-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/file-input.c -------------------------------------------------------------------------------- /src/ui/daisy/footer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/footer.c -------------------------------------------------------------------------------- /src/ui/daisy/indicator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/indicator.c -------------------------------------------------------------------------------- /src/ui/daisy/loading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/loading.c -------------------------------------------------------------------------------- /src/ui/daisy/modal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/modal.c -------------------------------------------------------------------------------- /src/ui/daisy/navbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/navbar.c -------------------------------------------------------------------------------- /src/ui/daisy/pagination.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/pagination.c -------------------------------------------------------------------------------- /src/ui/daisy/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/progress.c -------------------------------------------------------------------------------- /src/ui/daisy/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/radio.c -------------------------------------------------------------------------------- /src/ui/daisy/range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/range.c -------------------------------------------------------------------------------- /src/ui/daisy/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/select.c -------------------------------------------------------------------------------- /src/ui/daisy/text-input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/text-input.c -------------------------------------------------------------------------------- /src/ui/daisy/textarea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/textarea.c -------------------------------------------------------------------------------- /src/ui/daisy/theme-controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/theme-controller.c -------------------------------------------------------------------------------- /src/ui/daisy/toast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/toast.c -------------------------------------------------------------------------------- /src/ui/daisy/toggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/toggle.c -------------------------------------------------------------------------------- /src/ui/daisy/tooltip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/tooltip.c -------------------------------------------------------------------------------- /src/ui/daisy/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/src/ui/daisy/utils.c -------------------------------------------------------------------------------- /style/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/style/github-markdown.css -------------------------------------------------------------------------------- /style/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/style/markdown.css -------------------------------------------------------------------------------- /style/pss-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/style/pss-style.css -------------------------------------------------------------------------------- /style/spp-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/style/spp-style.css -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDesp73/webc/HEAD/todo.txt --------------------------------------------------------------------------------