├── .babelrc ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── .vscodeignore ├── .yarnclean ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── media ├── editNote.svg ├── logo-dark.svg ├── logo-light.svg ├── logo.svg ├── logo128.png ├── logo192.png ├── logo512.png ├── logo64.png ├── notes.svg ├── refresh.svg └── reload.svg ├── package.json ├── public └── deps │ ├── README.md │ ├── echarts-gl │ └── echarts-gl.min.js │ ├── echarts │ └── echarts.min.js │ ├── html2pdf.js │ └── html2pdf.bundle.min.js │ ├── marked │ └── marked.min.js │ ├── mermaid │ └── mermaid.min.js │ ├── plantuml-encoder │ └── plantuml-encoder.min.js │ ├── prism │ ├── prism.css │ └── prism.js │ ├── vega-embed │ └── vega-embed.min.js │ ├── vega-lite │ └── vega-lite.min.js │ ├── vega │ └── vega.min.js │ ├── wavedrom │ ├── skins │ │ └── default.js │ └── wavedrom.min.js │ └── yamljs │ └── yaml.min.js ├── src ├── extension.ts ├── extension │ ├── EditorPanelWebviewPanel.ts │ ├── NotesPanelWebviewPanel.ts │ ├── TreeItem.ts │ ├── TreeView.ts │ ├── WebviewConfig.ts │ └── settings.ts ├── lib │ ├── crossnote.ts │ ├── keymap.ts │ ├── message.ts │ ├── note.ts │ ├── notebook.ts │ ├── section.ts │ └── settings.ts ├── util │ ├── image_uploader.ts │ └── util.ts └── views │ ├── EditorPanelWebview.tsx │ ├── NotesPanelWebview.tsx │ ├── components │ ├── ChangeFilePathDialog.tsx │ ├── DeleteDialog.tsx │ ├── EditImageDialog.tsx │ ├── EditorPanel.tsx │ ├── NoteCard.tsx │ ├── Notes.tsx │ ├── NotesPanel.tsx │ └── TagsMenuPopover.tsx │ ├── editor │ ├── index.ts │ ├── views │ │ ├── README.md │ │ ├── float-win.ts │ │ └── math-preview.ts │ └── widgets │ │ ├── README.md │ │ ├── abc │ │ └── index.tsx │ │ ├── audio │ │ └── index.tsx │ │ ├── bilibili │ │ └── index.tsx │ │ ├── github_gist │ │ └── index.tsx │ │ ├── image │ │ └── index.tsx │ │ ├── kanban │ │ └── index.tsx │ │ ├── netease_music │ │ └── index.tsx │ │ ├── ocr │ │ └── index.tsx │ │ ├── timer │ │ └── index.tsx │ │ ├── video │ │ └── index.tsx │ │ └── youtube │ │ └── index.tsx │ ├── i18n │ ├── i18n.ts │ └── lang │ │ ├── enUS.ts │ │ ├── jaJP.ts │ │ ├── zhCN.ts │ │ └── zhTW.ts │ ├── index.css │ ├── index.less │ ├── themes │ ├── dark.ts │ ├── light.ts │ ├── manager.ts │ ├── one-dark.ts │ ├── solarized-light.ts │ └── theme.ts │ └── util │ ├── markdown.ts │ ├── preview.ts │ └── util.ts ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/.yarnclean -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/README.md -------------------------------------------------------------------------------- /media/editNote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/editNote.svg -------------------------------------------------------------------------------- /media/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/logo-dark.svg -------------------------------------------------------------------------------- /media/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/logo-light.svg -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/logo128.png -------------------------------------------------------------------------------- /media/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/logo192.png -------------------------------------------------------------------------------- /media/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/logo512.png -------------------------------------------------------------------------------- /media/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/logo64.png -------------------------------------------------------------------------------- /media/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/notes.svg -------------------------------------------------------------------------------- /media/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/refresh.svg -------------------------------------------------------------------------------- /media/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/media/reload.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/package.json -------------------------------------------------------------------------------- /public/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/README.md -------------------------------------------------------------------------------- /public/deps/echarts-gl/echarts-gl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/echarts-gl/echarts-gl.min.js -------------------------------------------------------------------------------- /public/deps/echarts/echarts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/echarts/echarts.min.js -------------------------------------------------------------------------------- /public/deps/html2pdf.js/html2pdf.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/html2pdf.js/html2pdf.bundle.min.js -------------------------------------------------------------------------------- /public/deps/marked/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/marked/marked.min.js -------------------------------------------------------------------------------- /public/deps/mermaid/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/mermaid/mermaid.min.js -------------------------------------------------------------------------------- /public/deps/plantuml-encoder/plantuml-encoder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/plantuml-encoder/plantuml-encoder.min.js -------------------------------------------------------------------------------- /public/deps/prism/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/prism/prism.css -------------------------------------------------------------------------------- /public/deps/prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/prism/prism.js -------------------------------------------------------------------------------- /public/deps/vega-embed/vega-embed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/vega-embed/vega-embed.min.js -------------------------------------------------------------------------------- /public/deps/vega-lite/vega-lite.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/vega-lite/vega-lite.min.js -------------------------------------------------------------------------------- /public/deps/vega/vega.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/vega/vega.min.js -------------------------------------------------------------------------------- /public/deps/wavedrom/skins/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/wavedrom/skins/default.js -------------------------------------------------------------------------------- /public/deps/wavedrom/wavedrom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/wavedrom/wavedrom.min.js -------------------------------------------------------------------------------- /public/deps/yamljs/yaml.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/public/deps/yamljs/yaml.min.js -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/extension/EditorPanelWebviewPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/extension/EditorPanelWebviewPanel.ts -------------------------------------------------------------------------------- /src/extension/NotesPanelWebviewPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/extension/NotesPanelWebviewPanel.ts -------------------------------------------------------------------------------- /src/extension/TreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/extension/TreeItem.ts -------------------------------------------------------------------------------- /src/extension/TreeView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/extension/TreeView.ts -------------------------------------------------------------------------------- /src/extension/WebviewConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/extension/WebviewConfig.ts -------------------------------------------------------------------------------- /src/extension/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/extension/settings.ts -------------------------------------------------------------------------------- /src/lib/crossnote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/lib/crossnote.ts -------------------------------------------------------------------------------- /src/lib/keymap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/lib/keymap.ts -------------------------------------------------------------------------------- /src/lib/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/lib/message.ts -------------------------------------------------------------------------------- /src/lib/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/lib/note.ts -------------------------------------------------------------------------------- /src/lib/notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/lib/notebook.ts -------------------------------------------------------------------------------- /src/lib/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/lib/section.ts -------------------------------------------------------------------------------- /src/lib/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/lib/settings.ts -------------------------------------------------------------------------------- /src/util/image_uploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/util/image_uploader.ts -------------------------------------------------------------------------------- /src/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/util/util.ts -------------------------------------------------------------------------------- /src/views/EditorPanelWebview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/EditorPanelWebview.tsx -------------------------------------------------------------------------------- /src/views/NotesPanelWebview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/NotesPanelWebview.tsx -------------------------------------------------------------------------------- /src/views/components/ChangeFilePathDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/ChangeFilePathDialog.tsx -------------------------------------------------------------------------------- /src/views/components/DeleteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/DeleteDialog.tsx -------------------------------------------------------------------------------- /src/views/components/EditImageDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/EditImageDialog.tsx -------------------------------------------------------------------------------- /src/views/components/EditorPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/EditorPanel.tsx -------------------------------------------------------------------------------- /src/views/components/NoteCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/NoteCard.tsx -------------------------------------------------------------------------------- /src/views/components/Notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/Notes.tsx -------------------------------------------------------------------------------- /src/views/components/NotesPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/NotesPanel.tsx -------------------------------------------------------------------------------- /src/views/components/TagsMenuPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/components/TagsMenuPopover.tsx -------------------------------------------------------------------------------- /src/views/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/index.ts -------------------------------------------------------------------------------- /src/views/editor/views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/views/README.md -------------------------------------------------------------------------------- /src/views/editor/views/float-win.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/views/float-win.ts -------------------------------------------------------------------------------- /src/views/editor/views/math-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/views/math-preview.ts -------------------------------------------------------------------------------- /src/views/editor/widgets/README.md: -------------------------------------------------------------------------------- 1 | # Widgets 2 | -------------------------------------------------------------------------------- /src/views/editor/widgets/abc/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/abc/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/audio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/audio/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/bilibili/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/bilibili/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/github_gist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/github_gist/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/image/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/kanban/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/kanban/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/netease_music/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/netease_music/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/ocr/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/ocr/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/timer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/timer/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/video/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/video/index.tsx -------------------------------------------------------------------------------- /src/views/editor/widgets/youtube/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/editor/widgets/youtube/index.tsx -------------------------------------------------------------------------------- /src/views/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/i18n/i18n.ts -------------------------------------------------------------------------------- /src/views/i18n/lang/enUS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/i18n/lang/enUS.ts -------------------------------------------------------------------------------- /src/views/i18n/lang/jaJP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/i18n/lang/jaJP.ts -------------------------------------------------------------------------------- /src/views/i18n/lang/zhCN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/i18n/lang/zhCN.ts -------------------------------------------------------------------------------- /src/views/i18n/lang/zhTW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/i18n/lang/zhTW.ts -------------------------------------------------------------------------------- /src/views/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/index.css -------------------------------------------------------------------------------- /src/views/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/index.less -------------------------------------------------------------------------------- /src/views/themes/dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/themes/dark.ts -------------------------------------------------------------------------------- /src/views/themes/light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/themes/light.ts -------------------------------------------------------------------------------- /src/views/themes/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/themes/manager.ts -------------------------------------------------------------------------------- /src/views/themes/one-dark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/themes/one-dark.ts -------------------------------------------------------------------------------- /src/views/themes/solarized-light.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/themes/solarized-light.ts -------------------------------------------------------------------------------- /src/views/themes/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/themes/theme.ts -------------------------------------------------------------------------------- /src/views/util/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/util/markdown.ts -------------------------------------------------------------------------------- /src/views/util/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/util/preview.ts -------------------------------------------------------------------------------- /src/views/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/src/views/util/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xGG/vscode-crossnote/HEAD/yarn.lock --------------------------------------------------------------------------------