README file from
GithubAccount Viewer
Obsidian Plugin that automatically generates accounting tables from Markdown code blocks tagged with the accounting
alias.
Example Code Block:
```accounting
entry
+ Cash: $10,100.50
- Common Stock: $10,100.50
```
Preview:
For more example:
Go to Usage header.
Installation
You can follow any of the 3 options below to install the plugin.
Option 1
If you have Obsidian installed on your device:
- Follow the Obsidian URL to install the plugin: https://obsidian.md/plugins?id=account-viewer
Option 2
Install inside Plugins on Obsidian:
- Open Settings.
- Select Turn on community plugins. For more information, refer to Plugin security > Restricted mode.
- Select Browse to list all available community plugins.
- Use the text box to type "Account Viewer" keywords.
- Enable "Account Viewer" plugin from the list of Community plugins under Settings → Community plugins → Installed plugins.
You can also browse available plugins in your browser, by heading to obsidian.md/plugins.
For more details: Browse community plugins | Obsidian Help
Option 3
Manually Install:
- Go to the Release page.
- Download the latest version file:
- account-viewer-X.X.X.zip
- Manually install the plugin.
- Enable "Account Viewer" plugin from the list of Community plugins under
- Settings → Community plugins → Installed plugins.
Usage
Add content in a code block using the accounting alias.
Transaction Record
Code Block:
```accounting
transaction 2014-06-01
+ "Osborne Consulting, Inc., sold $10,000 of common stock to Cindy Osborne, who was investing cash in the business."
```
Preview:
Code Block:
Using without date:
```accounting
transaction
+ "Osborne Consulting, Inc., sold $10,000 of common stock to Cindy Osborne, who was investing cash in the business."
```
Preview:
Journal Entry
```accounting
entry 2014-06-01
page "Page 1"
+ Cash: $10,100.50 : 111
- Common Stock: $10,100.50 : 311
desc "Sold stock."
```
Preview:
Code Block:
Using only account and amount: without date and post reference:
```accounting
entry
+ Cash: $10,100.50
- Common Stock: $10,100.50
```
Preview:
T-Account
Code Block:
```accounting
t-account Account Receivable
+ Beginnig Balance: $24,000
+ Credit Sales: $400,000
- Collection: $85,000
- Bad Debd Expense: $315,000
balance
+ Ending Jan: $24,000
```
Preview:
Code Block:
Using only account without balance
```accounting
t-account Account Receivable
+ Beginnig Balance: $24,000
+ Credit Sales: $400,000
- Collection: $85,000
- Bad Debd Expense: $315,000
```
Preview:
Combine
Code Block:
Using multiple records in one block:
```accounting
transaction 2014-06-01
+ "Osborne Consulting, Inc., sold $10,000 of common stock to Cindy Osborne, who was investing cash in the business."
transaction
+ "Osborne Consulting, Inc., sold $10,000 of common stock to Cindy Osborne, who was investing cash in the business."
entry 2014-06-01
page "Page 1"
+ Cash: $10,100.50 : 111
- Common Stock: $10,100.50 : 311
desc "Sold stock."
entry
page "Page 1"
+ Cash: $10,100.50 : 111
- Common Stock: $10,100.50 : 311
t-account Account Receivable
+ Beginnig Balance: $24,000
+ Credit Sales: $400,000
- Collection: $85,000
- Bad Debd Expense: $315,000
balance
+ Ending Jan: $24,000
```
Preview:
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.