{% extends "layouts/default.html" %}
{% block title %}Package Documentation{% endblock %}
{% block content %}
Endpoint/URL (method) |
Parameters |
Documentation |
{% for doc in docs %}
{{ doc.0 }} {{ doc.2 }} |
{% if doc.3 %}
{% endif %}
|
{% if doc.1 %}
{% endif %}
|
{% endfor %}
{% endblock %}
{# comment #}
(cl-who:with-html-output-to-string (s nil :prologue t)
(:html
(:head)
(:body
(loop for (url docstring methods params) in docs
do (cl-who:htm (:h3 (cl-who:str url) " " (cl-who:fmt "~a" methods))
(if params (cl-who:htm (:h4 (cl-who:fmt " Params: ~a" params))))
(:div (cl-who:str docstring)))))))
{# endcomment #}