Skip to content

Commit 7e471e0

Browse files
authored
Merge pull request #15 from aem/changelog
add changelog
2 parents d3749d4 + 7ac86a1 commit 7e471e0

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

CHANGELOG.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# docs-soap Changelog
2+
<table>
3+
<tr>
4+
<td>
5+
<strong>v0.1.3</strong>
6+
</td>
7+
<td>
8+
<ul>
9+
<li>Added support for all inline styles</li>
10+
</ul>
11+
</td>
12+
</tr>
13+
<tr>
14+
<td>
15+
<strong>v0.1.2</strong>
16+
</td>
17+
<td>
18+
<ul>
19+
<li>Added support for underlines</li>
20+
</ul>
21+
</td>
22+
</tr>
23+
<tr>
24+
<td>
25+
<strong>v0.1.1</strong>
26+
</td>
27+
<td>
28+
<ul>
29+
<li>Updated function name from `convertGoogleToHTML` to `docsSoap`</li>
30+
<li>Provided converter as a default export</li>
31+
<li>Configured ESLint and removed `invariant` as a dependency</li>
32+
</ul>
33+
</td>
34+
</tr>
35+
<tr>
36+
<td>
37+
<strong>v0.0.1</strong>
38+
</td>
39+
<td>
40+
<ul>
41+
<li>Initial release</li>
42+
<li>Support for the following is included:</li>
43+
<ul>
44+
<li>Unordered, flattened lists</li>
45+
<li>Bold and italics</li>
46+
<li>Links</li>
47+
</ul>
48+
</ul>
49+
</td>
50+
</tr>
51+
</table>

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ docs-soap is a small, simple library that can be used to transform clipboard con
44

55
This project was developed for use in a client-side project. To use in a Node environment, your project will also require [jsdom](https://www.npmjs.com/package/jsdom).
66

7+
### New in 0.1.3
8+
<ul>
9+
<li>Added support for all inline styles</li>
10+
</ul>
11+
712
### Exported API
813
```js
914
export default docsSoap(html: string) -> string;

0 commit comments

Comments
 (0)