diff --git a/README.md b/README.md
index 0e52b3a1..f2a9e985 100644
--- a/README.md
+++ b/README.md
@@ -153,4 +153,8 @@ const mindMap = new MindMap({
才镇
+
+
+ 小米bbᯤ²ᴳ
+
Fix:
+++1.Optimize the logic of rich text measurement elements, remove duplicate settings for styles, and add duplicate nodes
+2.Optimize the export image logic, and when traversing the node to convert the URL of the image, if it is already in the form of data: URL, do not handle it repeatedly.
+
New:
+++1.Remove the second parameter of the exported SVG method and configure it through instantiation instead.
+2.Export images without using external libraries.
+
Demo:
++1.Fixed a bug where siblings can be added to the root node when editing the outline separately.
+
Fix: Fixed an issue where rich text nodes cannot be displayed in Firefox browser.
name:svg title
plusCssText:v0.4.0+, When node rich text editing is enabled and domToImage passes false, additional css styles can be added. If there is a dom node in svg, you can set some styles for the node through this parameter, such as:
plusCssText:v0.4.0+, (v0.6.16+This parameter has been removed and instead passed in through the resetCss configuration during instantiation), When node rich text editing is enabled and domToImage passes false, additional css styles can be added. If there is a dom node in svg, you can set some styles for the node through this parameter, such as:
svg(
diff --git a/web/src/pages/Doc/en/introduction/index.md b/web/src/pages/Doc/en/introduction/index.md
index 7b9a4d31..4f352423 100644
--- a/web/src/pages/Doc/en/introduction/index.md
+++ b/web/src/pages/Doc/en/introduction/index.md
@@ -169,4 +169,8 @@ Open source is not easy. If this project is helpful to you, you can invite the a
才镇
小米bbᯤ²ᴳ
+才镇
+小米bbᯤ²ᴳ
+修复:
+++1.优化富文本测量元素的逻辑,删除样式的重复设置和节点的重复添加。
+2.优化导出图片逻辑,遍历节点转换图片的url时,如果已经是data:URL形式不重复处理。
+
新增:
+++1.去除导出svg方法的第二个参数,改为通过实例化配置。
+2.导出图片不再使用外部库。
+
Demo:
++1.修复单独编辑大纲时能给根节点添加兄弟节点的bug。
+
修复:修复在Firefox浏览器中富文本节点无法显示的问题。
mindMap.export(type, isDownload, fileName, plusCssText = '')
如果开启了节点富文本编辑,也就是svg中会存在节点的html结构,这就又存在一个问题,因为浏览器对每个元素默认会设置一些样式,影响最大的就是margin和padding,这就有可能会导致节点中的文字错位,所以可以通过plusCssText参数传入css样式:
+在v0.6.16+版本后,plusCssText参数已被删除,改为在实例化时通过
+resetCss配置传入。
mindMap.export(
'svg',
true,
diff --git a/web/src/pages/Doc/zh/doExport/index.md b/web/src/pages/Doc/zh/doExport/index.md
index 53a8b373..aa8904e9 100644
--- a/web/src/pages/Doc/zh/doExport/index.md
+++ b/web/src/pages/Doc/zh/doExport/index.md
@@ -52,7 +52,7 @@ a.click()
- `name`:`svg`标题
-- `plusCssText`:v0.4.0+,当开启了节点富文本编辑,且`domToImage`传了`false`时,可以添加附加的`css`样式,如果`svg`中存在`dom`节点,想要设置一些针对节点的样式可以通过这个参数传入,比如:
+- `plusCssText`:v0.4.0+,(v0.6.16+已去除该参数,改为在实例化时通过`resetCss`配置传入),当开启了节点富文本编辑,且`domToImage`传了`false`时,可以添加附加的`css`样式,如果`svg`中存在`dom`节点,想要设置一些针对节点的样式可以通过这个参数传入,比如:
```js
svg(
diff --git a/web/src/pages/Doc/zh/doExport/index.vue b/web/src/pages/Doc/zh/doExport/index.vue
index 24fe77b3..ecc32688 100644
--- a/web/src/pages/Doc/zh/doExport/index.vue
+++ b/web/src/pages/Doc/zh/doExport/index.vue
@@ -46,7 +46,7 @@ a.click()
name:svg标题
-plusCssText:v0.4.0+,当开启了节点富文本编辑,且domToImage传了false时,可以添加附加的css样式,如果svg中存在dom节点,想要设置一些针对节点的样式可以通过这个参数传入,比如:
+plusCssText:v0.4.0+,(v0.6.16+已去除该参数,改为在实例化时通过resetCss配置传入),当开启了节点富文本编辑,且domToImage传了false时,可以添加附加的css样式,如果svg中存在dom节点,想要设置一些针对节点的样式可以通过这个参数传入,比如:
svg(
diff --git a/web/src/pages/Doc/zh/introduction/index.md b/web/src/pages/Doc/zh/introduction/index.md
index 931738ef..34b9c23b 100644
--- a/web/src/pages/Doc/zh/introduction/index.md
+++ b/web/src/pages/Doc/zh/introduction/index.md
@@ -162,4 +162,8 @@
才镇
小米bbᯤ²ᴳ
+才镇
+小米bbᯤ²ᴳ
+