allow html in summary, notes and description

Conflicts:

	src/main/template/param_readonly.handlebars
	src/main/template/param_readonly_required.handlebars
This commit is contained in:
Rintcius Blok
2012-08-18 11:33:39 +01:00
parent af5ec2a700
commit ed7bf75e9a
6 changed files with 21 additions and 10 deletions

View File

@@ -1,4 +1,9 @@
<td class='code required'>{{name}}</td>
<td>-</td>
<td width='500'>{{description}}</td>
<td>
{{#if isBody}}
<textarea class='body-textarea' readonly='readonly' placeholder='(required)' name='{{name}}'>{{defaultValue}}</textarea>
{{else}}
{{defaultValue}}
{{/if}}
</td>
<td width='500'>{{{description}}}</td>