Merge branch 'master' of github.com:simonmichael/hledger

This commit is contained in:
Simon Michael 2013-06-08 11:38:25 -07:00
commit 8ba1d2aa85
3 changed files with 11 additions and 2 deletions

5
FAQ.md
View File

@ -200,6 +200,11 @@ comments may be permissible in different places.
postings with the same date) by parse order. ledger goes strictly by postings with the same date) by parse order. ledger goes strictly by
parse order. parse order.
- ledger allows amounts to have a
[fixed lot price](MANUAL.html#prices) and a regular price in any
order (and uses whichever appears first). hledger requires the fixed
lot price to come last (and ignores it).
### How are the implementations different ? ### How are the implementations different ?
ledger is written in C++, whereas hledger is written in the ledger is written in C++, whereas hledger is written in the

View File

@ -5,7 +5,7 @@ title: hledger
# hledger # hledger
hledger is a computer program for easily tracking money, time, or other hledger is a computer program for easily tracking money, time, or other
commodities, inspired by [ledger](http://ledger-cli.org). It is quite commodities, inspired by and compatible with [ledger](http://ledger-cli.org). It is quite
limited in features, but lightweight and reliable. For some, it is a limited in features, but lightweight and reliable. For some, it is a
bare-bones, simpler, less expensive alternative to Quicken or GnuCash. It bare-bones, simpler, less expensive alternative to Quicken or GnuCash. It
is available for free under the GNU General Public License. is available for free under the GNU General Public License.
@ -25,7 +25,7 @@ learn more, including
[how we are different from ledger](FAQ.html#how-does-hledger-relate-to-ledger), [how we are different from ledger](FAQ.html#how-does-hledger-relate-to-ledger),
and get started tracking your numbers! and get started tracking your numbers!
**Community & support:** **Community & support**
**IRC (chat):** [irc.freenode.net/#ledger](irc://irc.freenode.net/#ledger) (shared with ledger) **IRC (chat):** [irc.freenode.net/#ledger](irc://irc.freenode.net/#ledger) (shared with ledger)
**Mail list:** [hledger.org/list](http://hledger.org/list) (for broader topics, you can also use [ledger's list](http://list.ledger-cli.org)) **Mail list:** [hledger.org/list](http://hledger.org/list) (for broader topics, you can also use [ledger's list](http://list.ledger-cli.org))
@ -38,3 +38,5 @@ and get started tracking your numbers!
or [email me](mailto:simon@joyful.com?subject=hledger:). or [email me](mailto:simon@joyful.com?subject=hledger:).
I appreciate feedback and help with all aspects of hledger. I appreciate feedback and help with all aspects of hledger.
--> -->

View File

@ -45,3 +45,5 @@ symlinkIndexHtml = ensureSiteDir >> system "ln -sf README.html _site/index.html"
symlinkProfsDir = ensureSiteDir >> system "ln -sf ../../profs _site/profs" symlinkProfsDir = ensureSiteDir >> system "ln -sf ../../profs _site/profs"
ensureSiteDir = system "mkdir -p _site" ensureSiteDir = system "mkdir -p _site"