You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/06/04 16:07:06 UTC

[skywalking-satellite] branch main updated: Remove plugin list page link (#50)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-satellite.git


The following commit(s) were added to refs/heads/main by this push:
     new 6f79522  Remove plugin list page link (#50)
6f79522 is described below

commit 6f79522fb91de25f75a3bca30dfb3e65add9ddd9
Author: mrproliu <74...@qq.com>
AuthorDate: Sat Jun 5 00:06:56 2021 +0800

    Remove plugin list page link (#50)
---
 docs/menu.yml                                   | 1 -
 internal/satellite/tools/generate_plugin_doc.go | 3 +++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/docs/menu.yml b/docs/menu.yml
index c72e0c0..c789eae 100644
--- a/docs/menu.yml
+++ b/docs/menu.yml
@@ -50,7 +50,6 @@ catalog:
             - name: Override Configuration
               path: /en/setup/configuration/override-settings
         - name: Plugins
-          path: /en/setup/plugins/plugin-list
           catalog:
             - name: client
               catalog:
diff --git a/internal/satellite/tools/generate_plugin_doc.go b/internal/satellite/tools/generate_plugin_doc.go
index 6a2c068..0d7b1e1 100644
--- a/internal/satellite/tools/generate_plugin_doc.go
+++ b/internal/satellite/tools/generate_plugin_doc.go
@@ -82,6 +82,9 @@ func updateMenuPluginListDoc(outputRootPath, menuFilePath, pluginFilePath string
 		return fmt.Errorf("cannot find plugins Catalog")
 	}
 
+	// remove path
+	pluginCatalog.Path = ""
+
 	// rebuild all plugins
 	var allPlugins []*Catalog
 	for _, category := range categories {