- default.rsに const で値をまとめる(個々の default は pub use で impl にエクスポートする)
- プラグインシステム (wasm?)
- neovim integration
- C-style API
- newtypeusing derive macro
- implement something to insert a text box
- Implement some features to use like spreadsheet editors (in the future)
- Mind maps or Diagrams? -> It needs to implement vector modeandraster (dot) mode?
The storing strategy
class Duck{
            +String beakColor
            +swim()
            +quack()
        }
- The dots will store in a buffer layer directly.
- The containers and some vector-modeelements should be represented in an AST-like layer before rendering into a buffer layer.
classDiagram
    class AST{
    }References