fix: link output (#616)
parent
148b10bc83
commit
42643183cd
|
@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## docx-wasm@0.0.278-rc1 (11. Apr, 2023)
|
||||||
|
|
||||||
|
- Fixed a bug, style.link is not output.
|
||||||
|
|
||||||
## docx-wasm@0.0.278-rc0 (27. Mar, 2023)
|
## docx-wasm@0.0.278-rc0 (27. Mar, 2023)
|
||||||
|
|
||||||
- Fixed a bug, escape style name.
|
- Fixed a bug, escape style name.
|
||||||
|
|
|
@ -26,6 +26,6 @@ impl Serialize for Link {
|
||||||
impl BuildXML for Link {
|
impl BuildXML for Link {
|
||||||
fn build(&self) -> Vec<u8> {
|
fn build(&self) -> Vec<u8> {
|
||||||
let b = XMLBuilder::new();
|
let b = XMLBuilder::new();
|
||||||
b.next(&self.val).build()
|
b.link(&self.val).build()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "docx-wasm",
|
"name": "docx-wasm",
|
||||||
"version": "0.0.278-rc0",
|
"version": "0.0.278-rc1",
|
||||||
"main": "dist/node/index.js",
|
"main": "dist/node/index.js",
|
||||||
"browser": "dist/web/index.js",
|
"browser": "dist/web/index.js",
|
||||||
"author": "bokuweb <bokuweb12@gmail.com>",
|
"author": "bokuweb <bokuweb12@gmail.com>",
|
||||||
|
|
Loading…
Reference in New Issue