dexterity42 / SharedProjectTimesheetsBundle

Shared Project Timesheets Bundle - Kimai 2 Plugin
MIT License
9 stars 14 forks source link

Feature Request: Render Markdown #27

Closed alexzaech closed 1 month ago

alexzaech commented 2 years ago

Would be nice to render markdown in the description field.

alexzaech commented 2 years ago

This can be easily achieved by using markdown_to_html feature.

Edit line 142 in SharedProjectTimesheetsBundle/Resources/views/view/timesheet.html.twig:

    <td>{{ record.description | e | nl2br | markdown_to_html }}</td>

Clear and warmup the cache and it should work. Description now renders markdown als html correctly. Note: Require adding twig/markdown-extra to composer dependencies