This is a static archive of the Python wiki, which was retired in February 2026 due to lack of usage and the resources necessary to serve it — predominately to bots, crawlers, and LLM companies.
Pages are preserved as they were at the time of archival. For current information, please visit python.org.
If a change to this archive is absolutely needed, requests can be made via the infrastructure@python.org mailing list.

Comment-based syntax typically uses XML-like comments or special preprocessed comment-like elements to either annotate parts of a Web page (see StructureAnnotation) or to introduce program code into the document (see PythonInWebPage).

See PythonInWebPage for an example using JSP-like syntax. Here is a StructureAnnotation version using HTML-like syntax:

<table>
  <!-- loop:item in items -->
    <tr>
      <th>Name</th>
      <td><!-- expr:item.name --></td>
    </tr>
  <!-- loop:end -->
</table>

One potential advantage of comment-based syntax is that HTML-aware tools can ignore the comments, should the syntax have been chosen correctly.


2026-02-14 16:07