Ver Fonte

Convert URL-like text to links in plugins readme

Pierre GIRAUD há 7 anos atrás
pai
commit
d7fb704e27
1 ficheiros alterados com 3 adições e 1 exclusões
  1. 3 1
      public/app/features/plugins/plugin_edit_ctrl.ts

+ 3 - 1
public/app/features/plugins/plugin_edit_ctrl.ts

@@ -97,7 +97,9 @@ export class PluginEditCtrl {
 
 
   initReadme() {
   initReadme() {
     return this.backendSrv.get(`/api/plugins/${this.pluginId}/markdown/readme`).then(res => {
     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));
       this.readmeHtml = this.$sce.trustAsHtml(md.render(res));
     });
     });
   }
   }