diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-30 14:41:19 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-01-13 18:33:42 +0100 |
commit | 1e453576dd5cc22596f8daea060daf353513c261 (patch) | |
tree | 11182fcf469356f29bfd15b3d405ce530f37a5fe /settings/templates | |
parent | e7a2151c4d39921933c7f52dc1345a70ac8ff6e0 (diff) | |
download | nextcloud-server-1e453576dd5cc22596f8daea060daf353513c261.tar.gz nextcloud-server-1e453576dd5cc22596f8daea060daf353513c261.zip |
Render markdown
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/apps.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 24f8061a530..bd1d4a2ba77 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -3,7 +3,8 @@ style('settings', 'settings'); vendor_script( 'core', [ - 'handlebars/handlebars' + 'handlebars/handlebars', + 'marked/marked.min', ] ); script( @@ -59,7 +60,7 @@ script( <div class="app-detailpage"></div> <div class="app-description-container hidden"> - <div class="app-description"><pre>{{description}}</pre></div> + <div class="app-description"><pre>{{{description}}}</pre></div> <!--<div class="app-changed">{{changed}}</div>--> {{#if documentation}} <p class="documentation"> |