--- a/src/main/webapp/WEB-INF/jsp/issue-form.jsp Tue Jan 06 19:14:24 2026 +0100 +++ b/src/main/webapp/WEB-INF/jsp/issue-form.jsp Tue Jan 06 20:08:54 2026 +0100 @@ -139,7 +139,11 @@ <tr> <th class="vtop"><label for="issue-description"><fmt:message key="issue.description"/></label></th> <td> - <textarea id="issue-description" name="description" rows="10"><c:out value="${issue.description}"/></textarea> + <c:set var="mde_id" value="issue-description" /> + <c:set var="mde_name" value="description" /> + <c:set var="mde_rows" value="10"/> + <c:set var="mde_value" value="${issue.description}"/> + <%@include file="../jspf/markdown-editor.jspf" %> </td> </tr> <tr> @@ -193,7 +197,12 @@ <c:if test="${issue.id ge 0}"> <tr> <th class="vtop"><label for="issue-comment"><fmt:message key="issue.comment"/></label> </th> - <td><textarea id="issue-comment" rows="3" name="comment"></textarea></td> + <td> + <c:set var="mde_id" value="issue-comment" /> + <c:set var="mde_name" value="comment" /> + <c:set var="mde_rows" value="3"/> + <%@include file="../jspf/markdown-editor.jspf" %> + </td> </tr> </c:if> </tbody>