فهرست منبع

Convert URL-like text to links in plugins readme

Pierre GIRAUD 7 سال پیش
والد
کامیت
d7fb704e27
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  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));
     });
     });
   }
   }