AdvancedTasks 1.6 Requires Restart
by mthaens
Thunderbirds Lightning Extension: Allows the use of Markdown in Task descriptions and renders them as HTML in the TaskView.
About this Add-on
Features:
- Renders Markdown as HTML in Taskview
- supports checkboxes ( clickable in Taskview)
-> will update the task description and update/calculate Taskprogress
Version 1.5+:
- open links in browser and mailto link in thunderbird
-> e.g. [link opens in browser!](https://addons.mozilla.org/en-US/thunderbird/addon/advancedtasks/) or [mailto](mailto:example@email.com)
- useful html elements: input, textarea, forms
-> save your input
-> send your forms to your server
HTML Examples:
Generate a Save Button to save input-fields and textareas:
<button type="button">Save</button>
Input:
<input type="text" value="myValue">
<textarea rows="4" cols="50">My Text</textarea>
<form action="http://yourserver/api" method="post">
First name: <input name="fname" value="111" type="text">
Last name: <input name="lname" value="" type="text">
<input value="Submit" type="submit">
</form>