muaz7424k downloadsAutomatically generate accounting tables from Markdown code blocks tagged with accounting.
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.
You can follow any of the 3 options below to install the plugin.
If you have Obsidian installed on your device:
Install inside Plugins on Obsidian:
You can also browse available plugins in your browser, by heading to obsidian.md/plugins.
For more details: Browse community plugins | Obsidian Help
Manually Install:
Add content in a code block using the accounting alias.
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:
```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:
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:
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:
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.