diff --git a/document/doc.md b/document/doc.md
index 9c024f9..97724e7 100644
--- a/document/doc.md
+++ b/document/doc.md
@@ -3,16 +2,0 @@
-`document` is the main API interface for the library, it contains most of the methods provided in the JavaScript [document object](https://developer.mozilla.org/en-US/docs/Web/API/Document)
-
-```mermaid
- flowchart LR;
- index.html-->open
- master.css-->open
- gui-->index.html;
- gui-->master.css;
- gui-->document.CreateElement;
- document.CreateElement-->new;
- open-->document;
- new-->document;
- document-->gui.display;
- script-->document;
-```
-
@@ -21,2 +4,0 @@
-The `Open` methed is used to load a file from disk and display the file.
-
# document
`document` is the main API interface for the library, it contains most of the methods provided in the JavaScript [document object](https://developer.mozilla.org/en-US/docs/Web/API/Document)
```mermaid
flowchart LR;
index.html-->open
master.css-->open
gui-->index.html;
gui-->master.css;
gui-->document.CreateElement;
document.CreateElement-->new;
open-->document;
new-->document;
document-->gui.display;
script-->document;
```
## Open?(go)
The `Open` methed is used to load a file from disk and display the file.
## CreateElement?(go)
## parse?(go)
## extractStylesheets?(go)
## extractStyleTags?(go)
## localizePath?(go)
## encapsulateText?(go)
## matchFactory?(go)
## removeWhitespace?(go)
## removeHTMLComments?(go)
## check?(go)
<{./main.go}>