├── Test Linki.md ├── settings.json ├── public ├── googledf0aa69dfc57e671.html ├── favicon.ico └── images │ ├── Insider.png │ ├── Search.png │ ├── Backlinks.png │ ├── Engelbart.jpg │ ├── Pasted image.png │ ├── Vault picker.png │ ├── Insert alises.png │ ├── Pasted image 1.png │ ├── Pasted image 10.png │ ├── Pasted image 11.png │ ├── Pasted image 13.png │ ├── Pasted image 14.png │ ├── Pasted image 15.png │ ├── Pasted image 16.png │ ├── Pasted image 17.png │ ├── Pasted image 18.png │ ├── Pasted image 19.png │ ├── Pasted image 3.png │ ├── Pasted image 4.png │ ├── Pasted image 5.png │ ├── Pasted image 6.png │ ├── Pasted image 7.png │ ├── Pasted image 8.png │ ├── Pasted image 9.png │ ├── CleanShot 2022-04-20 at 07.52.46@2x.png │ ├── CleanShot 2022-04-20 at 08.34.17@2x.png │ └── Excerpt from Mother of All Demos (1968).ogg ├── posts ├── Attachments │ ├── Search.png │ ├── Insider.png │ ├── Backlinks.png │ ├── Engelbart.jpg │ ├── Insert alises.png │ ├── Pasted image.png │ ├── Vault picker.png │ ├── Pasted image 1.png │ ├── Pasted image 10.png │ ├── Pasted image 11.png │ ├── Pasted image 13.png │ ├── Pasted image 14.png │ ├── Pasted image 15.png │ ├── Pasted image 16.png │ ├── Pasted image 17.png │ ├── Pasted image 18.png │ ├── Pasted image 19.png │ ├── Pasted image 3.png │ ├── Pasted image 4.png │ ├── Pasted image 5.png │ ├── Pasted image 6.png │ ├── Pasted image 7.png │ ├── Pasted image 8.png │ ├── Pasted image 9.png │ ├── Excerpt from Mother of All Demos (1968).ogg │ └── Slides demo.md ├── Obsidian │ ├── Obsidian Mobile.md │ ├── Official website.md │ ├── Mobile app beta.md │ ├── Android app.md │ ├── Obsidian.md │ ├── Credits.md │ └── iOS app.md ├── Plugins │ ├── Outline.md │ ├── Open in default app.md │ ├── Word count.md │ ├── Page preview.md │ ├── Random note.md │ ├── Slides.md │ ├── Starred notes.md │ ├── Markdown format converter.md │ ├── Backlinks.md │ ├── Audio recorder.md │ ├── Zettelkasten prefixer.md │ ├── File explorer.md │ ├── Tag pane.md │ ├── Workspaces.md │ ├── Quick switcher.md │ ├── Daily notes.md │ ├── Core plugins.md │ ├── Outgoing links.md │ ├── Command palette.md │ ├── Templates.md │ ├── File recovery.md │ ├── Note composer.md │ ├── Graph view.md │ ├── Publish.md │ └── Search.md ├── User interface │ ├── Workspace │ │ ├── Workspace.md │ │ ├── Status bar.md │ │ ├── Ribbon.md │ │ ├── Panes │ │ │ ├── Linked pane.md │ │ │ └── Pane layout.md │ │ ├── Title bar.md │ │ └── Sidebar.md │ └── Vault switcher.md ├── How to │ ├── Use hotkeys.md │ ├── Working with multiple cursors.md │ ├── Rename notes.md │ ├── Change settings.md │ ├── Folding.md │ ├── Preview and edit modes.md │ ├── Capture information.md │ ├── Update Obsidian.md │ ├── Working with backlinks.md │ ├── Internal link.md │ ├── Create notes.md │ ├── Working with tags.md │ ├── Working with multiple vaults.md │ ├── Add aliases to note.md │ ├── Link to blocks.md │ ├── Add custom styles.md │ ├── Manage attachments.md │ ├── Working with multiple notes.md │ ├── Embed files.md │ ├── Import data.md │ └── Basic note taking.md ├── Concepts │ ├── Current version.md │ ├── Interface language.md │ └── Installer version.md ├── Advanced topics │ ├── Accepted file formats.md │ ├── HTML sanitization.md │ ├── Deleting files.md │ ├── Customizing CSS.md │ ├── Insider builds.md │ ├── YAML front matter.md │ ├── Drag and Drop.md │ ├── Contributing to Obsidian.md │ ├── Community plugins.md │ ├── How Obsidian stores data.md │ └── Using obsidian URI.md ├── Customization │ ├── Custom hotkeys.md │ └── Appearance.md ├── Licenses & add-on services │ ├── Obsidian Unlimited.md │ ├── Refund policy.md │ ├── Catalyst license.md │ └── Commercial license.md ├── Getting Started.md ├── Start here.md └── index.md ├── styles ├── global.css ├── prism.css └── style.css ├── next.config.js ├── pages ├── _app.js ├── _document.js ├── index.js └── note │ └── [id].js ├── components ├── Layout.js ├── CustomLink.js ├── MDContainer.js ├── FolderTree.js ├── MDContent.js └── Graph.js ├── .gitignore ├── LICENSE ├── lib ├── node.js ├── obsidian-image.js ├── transformer.js └── utils.js ├── package.json └── README.md /Test Linki.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "title":"Digital Backrom" 3 | } -------------------------------------------------------------------------------- /public/googledf0aa69dfc57e671.html: -------------------------------------------------------------------------------- 1 | google-site-verification: googledf0aa69dfc57e671.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/Insider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Insider.png -------------------------------------------------------------------------------- /public/images/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Search.png -------------------------------------------------------------------------------- /posts/Attachments/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Search.png -------------------------------------------------------------------------------- /public/images/Backlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Backlinks.png -------------------------------------------------------------------------------- /public/images/Engelbart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Engelbart.jpg -------------------------------------------------------------------------------- /posts/Attachments/Insider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Insider.png -------------------------------------------------------------------------------- /public/images/Pasted image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image.png -------------------------------------------------------------------------------- /public/images/Vault picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Vault picker.png -------------------------------------------------------------------------------- /posts/Attachments/Backlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Backlinks.png -------------------------------------------------------------------------------- /posts/Attachments/Engelbart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Engelbart.jpg -------------------------------------------------------------------------------- /public/images/Insert alises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Insert alises.png -------------------------------------------------------------------------------- /public/images/Pasted image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 1.png -------------------------------------------------------------------------------- /public/images/Pasted image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 10.png -------------------------------------------------------------------------------- /public/images/Pasted image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 11.png -------------------------------------------------------------------------------- /public/images/Pasted image 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 13.png -------------------------------------------------------------------------------- /public/images/Pasted image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 14.png -------------------------------------------------------------------------------- /public/images/Pasted image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 15.png -------------------------------------------------------------------------------- /public/images/Pasted image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 16.png -------------------------------------------------------------------------------- /public/images/Pasted image 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 17.png -------------------------------------------------------------------------------- /public/images/Pasted image 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 18.png -------------------------------------------------------------------------------- /public/images/Pasted image 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 19.png -------------------------------------------------------------------------------- /public/images/Pasted image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 3.png -------------------------------------------------------------------------------- /public/images/Pasted image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 4.png -------------------------------------------------------------------------------- /public/images/Pasted image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 5.png -------------------------------------------------------------------------------- /public/images/Pasted image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 6.png -------------------------------------------------------------------------------- /public/images/Pasted image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 7.png -------------------------------------------------------------------------------- /public/images/Pasted image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 8.png -------------------------------------------------------------------------------- /public/images/Pasted image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Pasted image 9.png -------------------------------------------------------------------------------- /posts/Attachments/Insert alises.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Insert alises.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image.png -------------------------------------------------------------------------------- /posts/Attachments/Vault picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Vault picker.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 1.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 10.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 11.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 13.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 14.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 15.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 16.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 17.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 18.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 19.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 3.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 4.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 5.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 6.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 7.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 8.png -------------------------------------------------------------------------------- /posts/Attachments/Pasted image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Pasted image 9.png -------------------------------------------------------------------------------- /posts/Obsidian/Obsidian Mobile.md: -------------------------------------------------------------------------------- 1 | # Obsidian for Android 2 | 3 | See [[Android app]]. 4 | 5 | # Obsidian for iOS 6 | 7 | See [[iOS app]]. -------------------------------------------------------------------------------- /posts/Plugins/Outline.md: -------------------------------------------------------------------------------- 1 | The outline plugin shows the list of headings for the current note, and allows you to navigate to another section by clicking on a heading. -------------------------------------------------------------------------------- /public/images/CleanShot 2022-04-20 at 07.52.46@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/CleanShot 2022-04-20 at 07.52.46@2x.png -------------------------------------------------------------------------------- /public/images/CleanShot 2022-04-20 at 08.34.17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/CleanShot 2022-04-20 at 08.34.17@2x.png -------------------------------------------------------------------------------- /public/images/Excerpt from Mother of All Demos (1968).ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/public/images/Excerpt from Mother of All Demos (1968).ogg -------------------------------------------------------------------------------- /posts/Attachments/Excerpt from Mother of All Demos (1968).ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TuanManhCao/digital-garden/HEAD/posts/Attachments/Excerpt from Mother of All Demos (1968).ogg -------------------------------------------------------------------------------- /styles/global.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | padding: 0; 4 | margin: 0; 5 | font-family: 'Inter', sans-serif; 6 | } 7 | 8 | * { 9 | box-sizing: border-box; 10 | } 11 | 12 | #sidebar { 13 | padding-left: 16px; 14 | } 15 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | swcMinify: true, 3 | webpack: (config) => { 4 | config.resolve.fallback = { 5 | fs: false, 6 | buffer: false 7 | }; 8 | return config; 9 | }, 10 | } -------------------------------------------------------------------------------- /posts/Plugins/Open in default app.md: -------------------------------------------------------------------------------- 1 | Opens the current file with default app on your computer. You can access it at the top right corner of the file top bar: 2 | 3 | ![[Pasted image 5.png]] 4 | 5 | It's useful for editing images or annotating PDFs, among other things. 6 | -------------------------------------------------------------------------------- /posts/Plugins/Word count.md: -------------------------------------------------------------------------------- 1 | Word count is a simple plugin that shows the word count of your current note in the bottom status bar. 2 | 3 | It works for CJK characters too (Chinese, Japanese, and Korean), in which words are not separately by spaces but rather glued together. 4 | -------------------------------------------------------------------------------- /posts/Plugins/Page preview.md: -------------------------------------------------------------------------------- 1 | Page preview lets you preview a page when hovering an internal link, without needing to actually navigate to that page. 2 | 3 | ![[Pasted image 13.png]] 4 | 5 | This works on the preview pane. In the editor, you can hover a link while holding `Ctrl/Cmd`, which will open the preview too. 6 | -------------------------------------------------------------------------------- /posts/User interface/Workspace/Workspace.md: -------------------------------------------------------------------------------- 1 | The workspace in [[Obsidian]] contains the follow components: 2 | 3 | - [[Title bar]] 4 | - [[Sidebar|Sidebars]] 5 | - [[Sidebar#Panes|Sidebar panes]] 6 | - [[Sidebar#Tabs|Sidebar tabs]] 7 | - [[Ribbon]] (left sidebar only) 8 | - [[Pane layout|Panes]] 9 | - [[Status bar]] -------------------------------------------------------------------------------- /posts/How to/Use hotkeys.md: -------------------------------------------------------------------------------- 1 | Hotkeys help you get work done faster. If you frequently per 2 | 3 | If you have the [[Command palette]] enabled, You can use `Ctrl/Cmd+P` to bring it up, which will show you all currently available commands and hotkeys. 4 | 5 | Most hotkeys can be [[Custom hotkeys|customized]] for your needs in Settings → Hotkeys. -------------------------------------------------------------------------------- /posts/Concepts/Current version.md: -------------------------------------------------------------------------------- 1 | Your current version is your Obsidian version. This is the version number that you’ll see in the [[Title bar]] and the [[Vault switcher]]. 2 | 3 | You can have most of the new features and bug fixes by having an up-to-update current version. However, for some low-level updates, you might need to bring the [[Installer version]] up to date. -------------------------------------------------------------------------------- /posts/Plugins/Random note.md: -------------------------------------------------------------------------------- 1 | Random note does just that, opens a note at random from your Vault. Many people find this useful for surfacing thoughts they had not considered in a long time, or spot checking for things that they may have forgotten to link. 2 | 3 | After you enable the Random Note plugin, you can create a [[Custom hotkeys|custom hotkey]] that opens a note at random. -------------------------------------------------------------------------------- /posts/Plugins/Slides.md: -------------------------------------------------------------------------------- 1 | Slides lets you do simple presentations right inside Obsidian. 2 | 3 | ### Usage tips 4 | 5 | 1. To separate slides, use newlines and the `---` separator. 6 | 7 | 2. To start a presentation, click this button after opening a note: 8 | 9 | ![[Pasted image 14.png]] 10 | 11 | ### Demo 12 | 13 | Check out the demo document: [[Slides demo]] 14 | -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- 1 | import "../styles/global.css"; 2 | import "../styles/style.css"; 3 | import "../styles/prism.css"; 4 | import PlausibleProvider from "next-plausible"; 5 | export default function App({ Component, pageProps }) { 6 | return ( 7 | 8 | 9 | 10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /posts/Advanced topics/Accepted file formats.md: -------------------------------------------------------------------------------- 1 | Obsidian recognizes the following file formats right now: 2 | 3 | 1. Markdown files: `md`; 4 | 2. Image files: `png`, `jpg`, `jpeg`, `gif`, `bmp`, `svg`; 5 | 3. Audio files: `mp3`, `webm`, `wav`, `m4a`, `ogg`, `3gp`, `flac`; 6 | 4. Video files: `mp4`, `webm`, `ogv`; 7 | 5. PDF files: `pdf`. 8 | 9 | All these types of files can be [[Embed files|embedded]] in a note. 10 | -------------------------------------------------------------------------------- /posts/Concepts/Interface language.md: -------------------------------------------------------------------------------- 1 | The interface of Obsidian has been translated to various languages by [[Credits#Translators|our amazing volunteer translators]]. You can change the interface language either in Settings → About or in the [[Vault switcher]]. 2 | 3 | Don’t see your language in the list or seeing untranslated bits? Consider [[Contributing to Obsidian#Translating the docs|help us translate Obsidian into your language]]. -------------------------------------------------------------------------------- /components/Layout.js: -------------------------------------------------------------------------------- 1 | import Head from 'next/head' 2 | // import BasicTree from 'lib/MyFolderTree' 3 | export const siteTitle = 'Digital Backroom - An Internet Archive' 4 | import {Box} from '@mui/material' 5 | export default function Layout({children}) { 6 | 7 | return ( 8 |
9 |
10 | {children} 11 |
12 |
13 | ) 14 | } 15 | 16 | -------------------------------------------------------------------------------- /posts/Advanced topics/HTML sanitization.md: -------------------------------------------------------------------------------- 1 | Obsidian sanitizes html for security reasons. Because it runs locally, scripting vulnerabilities are a more serious problem than they would be in a web applications. Accordingly, we are probably a bit more strict than you may be used to, and you may run into issues if you try to do things like embedding `