# Comment Form (aka: never gather Metadata) Add a form, which allows your visitors to easily write comments. But more importantly, on submit the form generates a mailto-link. The resulting email contains a valid markdown block. Now you only have to copy this block in a new file. And therefore there is no need to gather the metadata (like date, author, replyto) yourself. #### Reply button Add this in the "comment for loop" in your article theme, 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`.