Skip to content

Latest commit

 

History

History
64 lines (40 loc) · 873 Bytes

guide.md

File metadata and controls

64 lines (40 loc) · 873 Bytes

Guides


Guides are made for creating guides, documentation. The basic template is in mardown:

# My Title 
---

Lorem ipsum

Technical


The guides are stored in .dust/databases/guide.nosql in the following format:

{
    id: this.id,
    title: this.title,
    filename: this.filename,
    isEncrypted: this.isEncrypted,
    platform: this.platform,
    description: this.description,
    tags: this.tags,
}

The file content is then saved at the following location .dust/guides/filename.md

Commands


Creating a guide:

dust add guide

Searching for guides:

dust search "my test" -g

For now search is only based on the title. But I will implement keyword extraction with match possibilities.

Guide actions:

  • delete

  • edit

  • open (non functional)

  • rename

  • view