;doc: update old manual links

This commit is contained in:
Simon Michael 2022-12-10 18:56:47 -10:00
parent 474ad22b94
commit ace185f7d2
5 changed files with 6 additions and 6 deletions

View File

@ -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).
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`).
Here\'s the quick way to run unit tests while developing:\

View File

@ -134,7 +134,7 @@ csvFileFor = reverse . drop 6 . reverse
defaultRulesText :: FilePath -> Text
defaultRulesText csvfile = T.pack $ unlines
["# 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"
,""

View File

@ -4,7 +4,7 @@
{-|
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
(<http://ledger-cli.org/3.0/doc/ledger3.html#Journal-Format>), so this
reader should handle many ledger files as well. Example:
@ -226,7 +226,7 @@ addJournalItemP =
--- *** directives
-- | 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
directivep :: MonadIO m => ErroringJournalParser m ()
directivep = (do

View File

@ -34,7 +34,7 @@ hledgerorgurl :: Text
hledgerorgurl = "http://hledger.org"
manualurl :: Text
manualurl = hledgerorgurl <> "/manual"
manualurl = hledgerorgurl <> "hledger.html"
-- | The default IP address to listen on. May be overridden with --host.
defhost :: String

View File

@ -605,7 +605,7 @@ Also:
### Budget report
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.
For example, you can take average monthly expenses in the common expense categories to construct a minimal monthly budget: