Skip to content

Commit 9fd3f5a

Browse files
committed
BREAKING CHANGE(*): remove markdown-pdf, docx & slate packages
Signed-off-by: Matt Roberts <[email protected]>
1 parent 92f912f commit 9fd3f5a

File tree

198 files changed

+8572
-91643
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+8572
-91643
lines changed

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
## Introduction
1919

20-
A transformation and parsing framework for converting markdown content to HTML, PDF, DOCX, Slate (for rich-text editing) and other structured document object models (DOMs).
20+
A transformation and parsing framework for converting markdown content to HTML and other structured document object models (DOMs).
2121

2222
![Transformations](./packages/markdown-transform/transformations.png)
2323

@@ -29,10 +29,7 @@ Top level repository (markdown-transform), with sub packages. Each sub-package i
2929
* [markdown-common](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-common) : converts between markdown strings and the CommonMark DOM
3030
* [markdown-cicero](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-cicero) : converts between the CommonMark DOM and the CiceroMark DOM
3131
* [markdown-template](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-template) : converts between JSON data + markdown strings and TemplateMark
32-
* [markdown-slate](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-slate) : converts between the CiceroMark DOM and the Slate DOM
3332
* [markdown-html](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-html) : converts between the CiceroMark DOM and HTML
34-
* [markdown-pdf](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-pdf) : converts between a PDF file and the CiceroMark DOM
35-
* [markdown-docx](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-docx) : converts a DOCX file to the CiceroMark DOM
3633
* [markdown-it-cicero](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-it-cicero) : markdown-it plugin for contracts and CiceroMark
3734
* [markdown-it-template](https://github.com/accordproject/markdown-transform/tree/main/packages/markdown-it-template) : markdown-it plugin for templates and TemplateMark
3835

@@ -58,10 +55,6 @@ The TemplateMark DOM extends the CommonMark DOM, defining nodes for `ClauseDefin
5855

5956
The schema is defined here: https://models.accordproject.org/markdown/templatemark.html
6057

61-
### Slate DOM
62-
63-
The Slate DOM is defined by the [Slate](https://www.slatejs.org) HTML content-editable WYSIWYG editing framework.
64-
6558
## Installation
6659

6760
### For users

architecture.puml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,8 @@ note left of [CiceroMark DOM]
2626
https://models.accordproject.org/ciceromark/ciceromark.html
2727
end note
2828

29-
package "markdown-slate" {
30-
[CiceroMark DOM] <-up-> [Slate DOM]
31-
}
32-
33-
note left of [Slate DOM]
34-
Slate is an HTML rich-text editor
35-
https://www.slatejs.org
36-
end note
37-
3829
package "markdown-html" {
3930
[CiceroMark DOM] <-up-> [HTML String]
4031
}
4132

42-
package "markdown-docx" {
43-
[CiceroMark DOM] <-- [DOCX File]
44-
}
45-
46-
package "markdown-pdf" {
47-
[CiceroMark DOM] <-- [PDF File]
48-
}
4933
@enduml

0 commit comments

Comments
 (0)