Diff
diff --git a/font/doc.md b/font/doc.md
deleted file mode 100644
index 20ef08c..0000000
--- a/font/doc.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# Font
-
-Font rasterizes all text in a document and handles the wrapping and positionion of text within a texture.
-
-```mermaid
-flowchart LR;
- LoadFont-->State.Text.Font;
- State.Text.Font-->State;
- State-->Render;
-```
-
-## GetFontPath?(go)
-
-## tryLoadSystemFont?(go)
-
-## sortByLength?(go)
-
-## GetFontSize?(go)
-
-## LoadFont?(go)
-
-## MeasureText?(go)
-
-## MeasureSpace?(go)
-
-## MeasureLongest?(go)
-
-## getSystemFonts?(go)
-
-## getWindowsFontPaths?(go)
-
-## getMacFontPaths?(go)
-
-## getLinuxFontPaths?(go)
-
-## getFontsRecursively?(go)
-
-## Render?(go)
-
-## drawString?(go)
-
-## wrap?(go)
-
-## drawLine?(go)
-
-## getLines?(go)
-
-<{./main.go}>