You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by zo...@apache.org on 2022/10/05 14:45:10 UTC

[incubator-seatunnel-website] branch main updated: [Doc][V2] Fix start-v2 local docs (#149)

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

zongwen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel-website.git


The following commit(s) were added to refs/heads/main by this push:
     new e8347d5b56 [Doc][V2] Fix start-v2 local docs (#149)
e8347d5b56 is described below

commit e8347d5b564c44f385419ce26415bc4c7efa9aac
Author: TaoZex <45...@users.noreply.github.com>
AuthorDate: Wed Oct 5 22:29:57 2022 +0800

    [Doc][V2] Fix start-v2 local docs (#149)
---
 versioned_docs/version-2.2.0-beta/start-v2/local.mdx | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/versioned_docs/version-2.2.0-beta/start-v2/local.mdx b/versioned_docs/version-2.2.0-beta/start-v2/local.mdx
index 47239d7b62..cd03403e65 100644
--- a/versioned_docs/version-2.2.0-beta/start-v2/local.mdx
+++ b/versioned_docs/version-2.2.0-beta/start-v2/local.mdx
@@ -35,17 +35,17 @@ tar -xzvf "apache-seatunnel-incubating-${version}-bin.tar.gz"
 Since 2.2.0, the binary package does not provide connector dependencies by default, so when using it for the first time, we need to execute the following command to install the connector: (Of course, you can also manually download the connector from [Apache Maven Repository](https://repo. maven.apache.org/maven2/org/apache/seatunnel/ to download, then manually move to the connectors directory).
 ```bash
 sh bin/install_plugin.sh
-````
+```
 If you need to specify the version of the connector, take 2.2.0 as an example, we need to execute
 ```bash
 sh bin/install_plugin.sh 2.2.0
-````
+```
 Usually we don't need all the connector plugins, so you can specify the plugins you need by configuring `config/plugin_config`, for example, you only need the `flink-assert` plugin, then you can modify plugin.properties as
-````plugin_config
+```plugin_config
 --flink-connectors--
 seatunnel-connector-flink-assert
 --end--
-```bash
+```
 
 ## Run SeaTunnel Application