diff --git a/document/doc.md b/document/doc.md
index c2d2182..9c024f9 100644
--- a/document/doc.md
+++ b/document/doc.md
@@ -11,4 +11,4 @@
- gui-->new;
- open-->new;
- new-->window;
- window-->document;
+ gui-->document.CreateElement;
+ document.CreateElement-->new;
+ open-->document;
+ new-->document;
# 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-->new;
open-->new;
new-->window;
window-->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}>