├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc.cjs ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bundle ├── lava-flow.zip └── module.json ├── css └── lava-flow.css ├── gulpfile.js ├── lang └── en.json ├── module.json ├── package.json ├── src ├── file-info.ts ├── folder-info.ts ├── index.ts ├── lava-flow-form.ts ├── lava-flow-settings.ts ├── lava-flow.ts └── util.ts ├── templates └── lava-flow-import.hbs ├── test ├── Test Vault │ ├── .obsidian │ │ ├── app.json │ │ ├── appearance.json │ │ ├── core-plugins-migration.json │ │ ├── core-plugins.json │ │ ├── hotkeys.json │ │ └── workspace.json │ ├── Embeds.md │ ├── Formats.md │ ├── My Folder │ │ ├── Companies │ │ │ └── Apple.md │ │ └── Fruits │ │ │ ├── Apple.md │ │ │ └── Citrus │ │ │ ├── Lemon.md │ │ │ └── Orange.md │ └── img │ │ ├── obsidian banner.png │ │ └── obsidian_banner.png └── utils │ └── generate_markdown_files.js └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/README.md -------------------------------------------------------------------------------- /bundle/lava-flow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/bundle/lava-flow.zip -------------------------------------------------------------------------------- /bundle/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/bundle/module.json -------------------------------------------------------------------------------- /css/lava-flow.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/lang/en.json -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/package.json -------------------------------------------------------------------------------- /src/file-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/src/file-info.ts -------------------------------------------------------------------------------- /src/folder-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/src/folder-info.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lava-flow-form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/src/lava-flow-form.ts -------------------------------------------------------------------------------- /src/lava-flow-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/src/lava-flow-settings.ts -------------------------------------------------------------------------------- /src/lava-flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/src/lava-flow.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/src/util.ts -------------------------------------------------------------------------------- /templates/lava-flow-import.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/templates/lava-flow-import.hbs -------------------------------------------------------------------------------- /test/Test Vault/.obsidian/app.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/Test Vault/.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | { 2 | "accentColor": "" 3 | } -------------------------------------------------------------------------------- /test/Test Vault/.obsidian/core-plugins-migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/.obsidian/core-plugins-migration.json -------------------------------------------------------------------------------- /test/Test Vault/.obsidian/core-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/.obsidian/core-plugins.json -------------------------------------------------------------------------------- /test/Test Vault/.obsidian/hotkeys.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/Test Vault/.obsidian/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/.obsidian/workspace.json -------------------------------------------------------------------------------- /test/Test Vault/Embeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/Embeds.md -------------------------------------------------------------------------------- /test/Test Vault/Formats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/Formats.md -------------------------------------------------------------------------------- /test/Test Vault/My Folder/Companies/Apple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/My Folder/Companies/Apple.md -------------------------------------------------------------------------------- /test/Test Vault/My Folder/Fruits/Apple.md: -------------------------------------------------------------------------------- 1 | Apples are delicious. -------------------------------------------------------------------------------- /test/Test Vault/My Folder/Fruits/Citrus/Lemon.md: -------------------------------------------------------------------------------- 1 | Lemons are yellow. -------------------------------------------------------------------------------- /test/Test Vault/My Folder/Fruits/Citrus/Orange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/My Folder/Fruits/Citrus/Orange.md -------------------------------------------------------------------------------- /test/Test Vault/img/obsidian banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/img/obsidian banner.png -------------------------------------------------------------------------------- /test/Test Vault/img/obsidian_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/Test Vault/img/obsidian_banner.png -------------------------------------------------------------------------------- /test/utils/generate_markdown_files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/test/utils/generate_markdown_files.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Praxxian/lava-flow/HEAD/tsconfig.json --------------------------------------------------------------------------------