Diff
diff --git a/docs/cstyle/plugins/inline/index.html b/docs/cstyle/plugins/inline/index.html
deleted file mode 100644
index 1928562..0000000
--- a/docs/cstyle/plugins/inline/index.html
+++ /dev/null
@@ -1,67 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Inline Plugin
-# Init?(go)
- 1package inline
- 2
- 3import (
- 4 "gui/cstyle"
- 5 "gui/element"
- 6)
- 7
- 8func Init() cstyle.Plugin {
- 9 return cstyle.Plugin{
-10 Styles: map[string]string{
-11 "display": "inline",
-12 },
-13 Level: 1,
-14 Handler: func(n *element.Node, state *map[string]element.State) {
-15 s := *state
-16 self := s[n.Properties.Id]
-17 parent := s[n.Parent.Properties.Id]
-18 copyOfX := self.X
-19 xCollect := float32(0)
-20 for i, v := range n.Parent.Children {
-21 vState := s[v.Properties.Id]
-22 if v.Properties.Id == n.Properties.Id {
-23 if self.X+xCollect+copyOfX+self.Width-2 > parent.Width+copyOfX && i > 0 {
-24 sibling := s[n.Parent.Children[i-1].Properties.Id]
-25 self.Y += sibling.Height
-26 self.X = copyOfX
-27 xCollect = copyOfX
-28 } else if i > 0 {
-29 self.X += xCollect
-30 }
-31 break
-32 } else if vState.X+xCollect+vState.Width-2 > parent.Width+copyOfX && i > 0 {
-33 // !ISSUE: Added the + xCollect and things got better but don't know why
-34 xCollect = copyOfX + xCollect
-35 } else {
-36 xCollect += vState.Width
-37 }
-38 }
-39 (*state)[n.Properties.Id] = self
-40 },
-41 }
-42}
-
-
-