# Comment Form (AKA, never gather metadata) Add a form that allows your visitors to easily write comments. But more importantly, on submission the form generates a `mailto:` link. The resulting email contains a valid Markdown block. Now you only have to copy this block to a new file, obviating the need to gather the metadata (such as date, author, replyto) yourself. #### Reply button Add the following in the comment for-loop in your article.html template so your visitors can reply to a comment. ```html ``` #### Form A basic form so your visitors can write comments. ```html
``` You may want to add a button to reset the `replyto` field. #### Javascript To generate the `mailto:` link and set the `replyto` field, there is some Javascript required. ```javascript ``` (jQuery is required for this script.) Don't forget to set the variables `user` and `domain`.