gitextract_g20e0di6/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── .prettierignore ├── .vscode/ │ └── settings.json ├── .yarnrc ├── LICENSE ├── README.md ├── content/ │ └── blog/ │ ├── browser-fs-access/ │ │ └── index.md │ ├── building-excalidraw-p2p-collaboration-feature/ │ │ └── index.md │ ├── deprecating-excalidraw-electron/ │ │ └── index.md │ ├── enabling-translations/ │ │ └── index.md │ ├── end-to-end-encryption/ │ │ └── index.md │ ├── excalidraw-and-fugu/ │ │ └── index.md │ ├── introducing-excalidraw-plus/ │ │ └── index.md │ ├── one-year-of-excalidraw/ │ │ └── index.md │ ├── open-colors/ │ │ └── index.md │ ├── redesigning-editor-api/ │ │ └── index.md │ ├── reflections-on-excalidraw/ │ │ └── index.md │ ├── rethinking-virtual-whiteboard/ │ │ └── index.md │ ├── tell-your-story-with-charts/ │ │ └── index.md │ ├── webex-meetings-integration/ │ │ └── index.md │ ├── year-three/ │ │ └── index.md │ └── year-two/ │ └── index.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src/ │ ├── blog.css │ ├── code.css │ ├── components/ │ │ ├── Toggle.css │ │ ├── Toggle.js │ │ ├── excalidraw.js │ │ ├── layout.js │ │ ├── layoutStyles.css │ │ └── seo.js │ ├── pages/ │ │ ├── 404.js │ │ └── index.js │ ├── styles.css │ ├── templates/ │ │ └── blog-post.js │ └── utils/ │ └── typography.js ├── static/ │ └── robots.txt └── vercel.json