;doc: update old manual links
This commit is contained in:
parent
474ad22b94
commit
ace185f7d2
@ -99,7 +99,7 @@ About testing in the hledger project, as of 201809.
|
|||||||
[examples](https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Read/JournalReader.hs#L579).
|
[examples](https://github.com/simonmichael/hledger/blob/master/hledger-lib/Hledger/Read/JournalReader.hs#L579).
|
||||||
|
|
||||||
The unit tests are shipped as part of the hledger executable, and
|
The unit tests are shipped as part of the hledger executable, and
|
||||||
can always be run via the [test](https://hledger.org/manual#test)
|
can always be run via the [test](https://hledger.org/hledger.html#test)
|
||||||
command (`hledger test`).
|
command (`hledger test`).
|
||||||
|
|
||||||
Here\'s the quick way to run unit tests while developing:\
|
Here\'s the quick way to run unit tests while developing:\
|
||||||
|
|||||||
@ -134,7 +134,7 @@ csvFileFor = reverse . drop 6 . reverse
|
|||||||
defaultRulesText :: FilePath -> Text
|
defaultRulesText :: FilePath -> Text
|
||||||
defaultRulesText csvfile = T.pack $ unlines
|
defaultRulesText csvfile = T.pack $ unlines
|
||||||
["# hledger csv conversion rules for " ++ csvFileFor (takeFileName csvfile)
|
["# hledger csv conversion rules for " ++ csvFileFor (takeFileName csvfile)
|
||||||
,"# cf http://hledger.org/manual#csv-files"
|
,"# cf http://hledger.org/hledger.html#csv"
|
||||||
,""
|
,""
|
||||||
,"account1 assets:bank:checking"
|
,"account1 assets:bank:checking"
|
||||||
,""
|
,""
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
{-|
|
{-|
|
||||||
|
|
||||||
A reader for hledger's journal file format
|
A reader for hledger's journal file format
|
||||||
(<http://hledger.org/MANUAL.html#the-journal-file>). hledger's journal
|
(<http://hledger.org/hledger.html#the-journal-file>). hledger's journal
|
||||||
format is a compatible subset of c++ ledger's
|
format is a compatible subset of c++ ledger's
|
||||||
(<http://ledger-cli.org/3.0/doc/ledger3.html#Journal-Format>), so this
|
(<http://ledger-cli.org/3.0/doc/ledger3.html#Journal-Format>), so this
|
||||||
reader should handle many ledger files as well. Example:
|
reader should handle many ledger files as well. Example:
|
||||||
@ -226,7 +226,7 @@ addJournalItemP =
|
|||||||
--- *** directives
|
--- *** directives
|
||||||
|
|
||||||
-- | Parse any journal directive and update the parse state accordingly.
|
-- | Parse any journal directive and update the parse state accordingly.
|
||||||
-- Cf http://hledger.org/manual.html#directives,
|
-- Cf http://hledger.org/hledger.html#directives,
|
||||||
-- http://ledger-cli.org/3.0/doc/ledger3.html#Command-Directives
|
-- http://ledger-cli.org/3.0/doc/ledger3.html#Command-Directives
|
||||||
directivep :: MonadIO m => ErroringJournalParser m ()
|
directivep :: MonadIO m => ErroringJournalParser m ()
|
||||||
directivep = (do
|
directivep = (do
|
||||||
|
|||||||
@ -34,7 +34,7 @@ hledgerorgurl :: Text
|
|||||||
hledgerorgurl = "http://hledger.org"
|
hledgerorgurl = "http://hledger.org"
|
||||||
|
|
||||||
manualurl :: Text
|
manualurl :: Text
|
||||||
manualurl = hledgerorgurl <> "/manual"
|
manualurl = hledgerorgurl <> "hledger.html"
|
||||||
|
|
||||||
-- | The default IP address to listen on. May be overridden with --host.
|
-- | The default IP address to listen on. May be overridden with --host.
|
||||||
defhost :: String
|
defhost :: String
|
||||||
|
|||||||
@ -605,7 +605,7 @@ Also:
|
|||||||
### Budget report
|
### Budget report
|
||||||
|
|
||||||
The `--budget` report type activates extra columns showing any budget goals for each account and period.
|
The `--budget` report type activates extra columns showing any budget goals for each account and period.
|
||||||
The budget goals are defined by [periodic transactions](journal.html#periodic-transactions).
|
The budget goals are defined by [periodic transactions](hledger.html#periodic-transactions).
|
||||||
This is very useful for comparing planned and actual income, expenses, time usage, etc.
|
This is very useful for comparing planned and actual income, expenses, time usage, etc.
|
||||||
|
|
||||||
For example, you can take average monthly expenses in the common expense categories to construct a minimal monthly budget:
|
For example, you can take average monthly expenses in the common expense categories to construct a minimal monthly budget:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user