Convert URL-like text to links in plugins readme

pull/12843/head
Pierre GIRAUD 7 years ago committed by Pierre GIRAUD
parent 817179c097
commit d7fb704e27
No known key found for this signature in database
GPG Key ID: 2D3C1FBD8BA59F61
  1. 4
      public/app/features/plugins/plugin_edit_ctrl.ts

@ -97,7 +97,9 @@ export class PluginEditCtrl {
initReadme() {
return this.backendSrv.get(`/api/plugins/${this.pluginId}/markdown/readme`).then(res => {
var md = new Remarkable();
var md = new Remarkable({
linkify: true
});
this.readmeHtml = this.$sce.trustAsHtml(md.render(res));
});
}

Loading…
Cancel
Save