diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -9,6 +9,16 @@
 User-visible changes in hledger-web.
 See also the hledger changelog.
 
+# 1.29.2 2023-04-07
+
+Improvements
+
+- A pager is used to show --help output when needed, as in `hledger`.
+
+Fixes
+
+- The corruption in 1.29's info manual is fixed. (#2023)
+
 # 1.29.1 2023-03-16
 
 - Allow building with GHC 9.6.1 (#2011)
diff --git a/Hledger/Web/Main.hs b/Hledger/Web/Main.hs
--- a/Hledger/Web/Main.hs
+++ b/Hledger/Web/Main.hs
@@ -48,10 +48,13 @@
 -- Run normally.
 hledgerWebMain :: IO ()
 hledgerWebMain = do
+  -- try to encourage user's $PAGER to properly display ANSI (in command line help)
+  when useColorOnStdout setupPager
+
   wopts@WebOpts{cliopts_=copts@CliOpts{debug_, rawopts_}} <- getHledgerWebOpts
   when (debug_ > 0) $ printf "%s\n" prognameandversion >> printf "opts: %s\n" (show wopts)
   if
-    | "help"            `inRawOpts` rawopts_ -> putStr (showModeUsage webmode) >> exitSuccess
+    | "help"            `inRawOpts` rawopts_ -> pager (showModeUsage webmode) >> exitSuccess
     | "info"            `inRawOpts` rawopts_ -> runInfoForTopic "hledger-web" Nothing
     | "man"             `inRawOpts` rawopts_ -> runManForTopic  "hledger-web" Nothing
     | "version"         `inRawOpts` rawopts_ -> putStrLn prognameandversion >> exitSuccess
diff --git a/hledger-web.1 b/hledger-web.1
--- a/hledger-web.1
+++ b/hledger-web.1
@@ -1,5 +1,5 @@
 
-.TH "HLEDGER-WEB" "1" "March 2023" "hledger-web-1.29.1 " "hledger User Manuals"
+.TH "HLEDGER-WEB" "1" "April 2023" "hledger-web-1.29.2 " "hledger User Manuals"
 
 
 
@@ -23,7 +23,7 @@
 \f[V]hledger web -- [OPTIONS] [QUERYARGS]\f[R] # start from hledger
 .SH DESCRIPTION
 .PP
-This manual is for hledger\[aq]s web interface, version 1.29.1.
+This manual is for hledger\[aq]s web interface, version 1.29.2.
 See also the hledger manual for common concepts and file formats.
 .PP
 hledger is a robust, user-friendly, cross-platform set of programs for
diff --git a/hledger-web.cabal b/hledger-web.cabal
--- a/hledger-web.cabal
+++ b/hledger-web.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           hledger-web
-version:        1.29.1
+version:        1.29.2
 synopsis:       Web-based user interface for the hledger accounting system
 description:    A simple web-based user interface for the hledger accounting system,
                 providing a more modern UI than the command-line or terminal interfaces.
@@ -151,7 +151,7 @@
   hs-source-dirs:
       ./
   ghc-options: -Wall -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns
-  cpp-options: -DVERSION="1.29.1"
+  cpp-options: -DVERSION="1.29.2"
   build-depends:
       Decimal >=0.5.1
     , aeson >=1
@@ -171,8 +171,8 @@
     , extra >=1.6.3
     , filepath
     , hjsmin
-    , hledger >=1.29.1 && <1.30
-    , hledger-lib >=1.29.1 && <1.30
+    , hledger >=1.29.2 && <1.30
+    , hledger-lib >=1.29.2 && <1.30
     , hspec
     , http-client
     , http-conduit
@@ -212,7 +212,7 @@
   hs-source-dirs:
       app
   ghc-options: -Wall -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns
-  cpp-options: -DVERSION="1.29.1"
+  cpp-options: -DVERSION="1.29.2"
   build-depends:
       base >=4.14 && <4.19
     , hledger-web
@@ -232,7 +232,7 @@
   hs-source-dirs:
       test
   ghc-options: -Wall -Wredundant-constraints -Wincomplete-record-updates -Wincomplete-uni-patterns
-  cpp-options: -DVERSION="1.29.1"
+  cpp-options: -DVERSION="1.29.2"
   build-depends:
       base >=4.14 && <4.19
     , hledger
diff --git a/hledger-web.info b/hledger-web.info
--- a/hledger-web.info
+++ b/hledger-web.info
@@ -1,4 +1,4 @@
-This is hledger-web.info, produced by makeinfo version 7.0.1 from stdin.
+This is hledger-web.info, produced by makeinfo version 7.0.3 from stdin.
 
 INFO-DIR-SECTION User Applications
 START-INFO-DIR-ENTRY
@@ -13,12 +13,12 @@
 
 hledger-web - robust, friendly plain text accounting (Web version)
 
-   ‘hledger-web [OPTIONS] # run temporarily & browse’
-‘hledger-web --serve [OPTIONS] # run without stopping’
-‘hledger-web --serve-api [OPTIONS] # run JSON server only’
-‘hledger web -- [OPTIONS] [QUERYARGS]’ # start from hledger
+   'hledger-web [OPTIONS] # run temporarily & browse'
+'hledger-web --serve [OPTIONS] # run without stopping'
+'hledger-web --serve-api [OPTIONS] # run JSON server only'
+'hledger web -- [OPTIONS] [QUERYARGS]' # start from hledger
 
-   This manual is for hledger’s web interface, version 1.29.1.  See also
+   This manual is for hledger's web interface, version 1.29.2.  See also
 the hledger manual for common concepts and file formats.
 
    hledger is a robust, user-friendly, cross-platform set of programs
@@ -41,21 +41,21 @@
 
    Like hledger, it reads data from one or more files in journal,
 timeclock, timedot, or CSV format.  The default file is
-‘.hledger.journal’ in your home directory; this can be overridden with
-one or more ‘-f FILE’ options, or the ‘LEDGER_FILE’ environment
+'.hledger.journal' in your home directory; this can be overridden with
+one or more '-f FILE' options, or the 'LEDGER_FILE' environment
 variable.  For more about this see hledger(1).
 
    hledger-web can be run in three modes:
 
-   • Transient mode (the default): your default web browser will be
+   * Transient mode (the default): your default web browser will be
      opened to show the app if possible, and the app exits automatically
      after two minutes of inactivity (no requests received and no open
      browser windows viewing it).
 
-   • With ‘--serve’: the app runs without stopping, and without opening
+   * With '--serve': the app runs without stopping, and without opening
      a browser.
 
-   • With ‘--serve-api’: only the JSON API is served.
+   * With '--serve-api': only the JSON API is served.
 
    In all cases hledger-web runs as a foreground process, logging
 requests to stdout.
@@ -82,180 +82,180 @@
 on the data.  These filter options are not shown in the web UI, but it
 will be applied in addition to any search query entered there.
 
-   Note: if invoking hledger-web as a hledger subcommand, write ‘--’
+   Note: if invoking hledger-web as a hledger subcommand, write '--'
 before options, as shown in the synopsis above.
 
-‘--serve’
+'--serve'
 
-     serve and log requests, don’t browse or auto-exit after timeout
-‘--serve-api’
+     serve and log requests, don't browse or auto-exit after timeout
+'--serve-api'
 
-     like –serve, but serve only the JSON web API, without the
+     like -serve, but serve only the JSON web API, without the
      server-side web UI
-‘--host=IPADDR’
+'--host=IPADDR'
 
      listen on this IP address (default: 127.0.0.1)
-‘--port=PORT’
+'--port=PORT'
 
      listen on this TCP port (default: 5000)
-‘--socket=SOCKETFILE’
+'--socket=SOCKETFILE'
 
      use a unix domain socket file to listen for requests instead of a
-     TCP socket.  Implies ‘--serve’.  It can only be used if the
+     TCP socket.  Implies '--serve'.  It can only be used if the
      operating system can provide this type of socket.
-‘--base-url=URL’
+'--base-url=URL'
 
      set the base url (default: http://IPADDR:PORT). Note: affects url
      generation but not route parsing.  Can be useful if running behind
      a reverse web proxy that does path rewriting.
-‘--file-url=URL’
+'--file-url=URL'
 
      set the static files url (default: BASEURL/static).  hledger-web
      normally serves static files itself, but if you wanted to serve
      them from another server for efficiency, you would set the url with
      this.
-‘--capabilities=CAP[,CAP..]’
+'--capabilities=CAP[,CAP..]'
 
      enable the view, add, and/or manage capabilities (default:
      view,add)
-‘--capabilities-header=HTTPHEADER’
+'--capabilities-header=HTTPHEADER'
 
      read capabilities to enable from a HTTP header, like
      X-Sandstorm-Permissions (default: disabled)
-‘--test’
+'--test'
 
-     run hledger-web’s tests and exit.  hspec test runner args may
-     follow a –, eg: hledger-web –test – –help
+     run hledger-web's tests and exit.  hspec test runner args may
+     follow a -, eg: hledger-web -test - -help
 
    hledger input options:
 
-‘-f FILE --file=FILE’
+'-f FILE --file=FILE'
 
      use a different input file.  For stdin, use - (default:
-     ‘$LEDGER_FILE’ or ‘$HOME/.hledger.journal’)
-‘--rules-file=RULESFILE’
+     '$LEDGER_FILE' or '$HOME/.hledger.journal')
+'--rules-file=RULESFILE'
 
      Conversion rules file to use when reading CSV (default: FILE.rules)
-‘--separator=CHAR’
+'--separator=CHAR'
 
-     Field separator to expect when reading CSV (default: ’,’)
-‘--alias=OLD=NEW’
+     Field separator to expect when reading CSV (default: ',')
+'--alias=OLD=NEW'
 
      rename accounts named OLD to NEW
-‘--anon’
+'--anon'
 
      anonymize accounts and payees
-‘--pivot FIELDNAME’
+'--pivot FIELDNAME'
 
      use some other field or tag for the account name
-‘-I --ignore-assertions’
+'-I --ignore-assertions'
 
      disable balance assertion checks (note: does not disable balance
      assignments)
-‘-s --strict’
+'-s --strict'
 
      do extra error checking (check that all posted accounts are
      declared)
 
    hledger reporting options:
 
-‘-b --begin=DATE’
+'-b --begin=DATE'
 
      include postings/txns on or after this date (will be adjusted to
      preceding subperiod start when using a report interval)
-‘-e --end=DATE’
+'-e --end=DATE'
 
      include postings/txns before this date (will be adjusted to
      following subperiod end when using a report interval)
-‘-D --daily’
+'-D --daily'
 
      multiperiod/multicolumn report by day
-‘-W --weekly’
+'-W --weekly'
 
      multiperiod/multicolumn report by week
-‘-M --monthly’
+'-M --monthly'
 
      multiperiod/multicolumn report by month
-‘-Q --quarterly’
+'-Q --quarterly'
 
      multiperiod/multicolumn report by quarter
-‘-Y --yearly’
+'-Y --yearly'
 
      multiperiod/multicolumn report by year
-‘-p --period=PERIODEXP’
+'-p --period=PERIODEXP'
 
      set start date, end date, and/or reporting interval all at once
      using period expressions syntax
-‘--date2’
+'--date2'
 
      match the secondary date instead (see command help for other
      effects)
-‘--today=DATE’
+'--today=DATE'
 
-     override today’s date (affects relative smart dates, for
+     override today's date (affects relative smart dates, for
      tests/examples)
-‘-U --unmarked’
+'-U --unmarked'
 
      include only unmarked postings/txns (can combine with -P or -C)
-‘-P --pending’
+'-P --pending'
 
      include only pending postings/txns
-‘-C --cleared’
+'-C --cleared'
 
      include only cleared postings/txns
-‘-R --real’
+'-R --real'
 
      include only non-virtual postings
-‘-NUM --depth=NUM’
+'-NUM --depth=NUM'
 
      hide/aggregate accounts or postings more than NUM levels deep
-‘-E --empty’
+'-E --empty'
 
      show items with zero amount, normally hidden (and vice-versa in
      hledger-ui/hledger-web)
-‘-B --cost’
+'-B --cost'
 
      convert amounts to their cost/selling amount at transaction time
-‘-V --market’
+'-V --market'
 
      convert amounts to their market value in default valuation
      commodities
-‘-X --exchange=COMM’
+'-X --exchange=COMM'
 
      convert amounts to their market value in commodity COMM
-‘--value’
+'--value'
 
      convert amounts to cost or market value, more flexibly than
      -B/-V/-X
-‘--infer-market-prices’
+'--infer-market-prices'
 
      use transaction prices (recorded with @ or @@) as additional market
      prices, as if they were P directives
-‘--auto’
+'--auto'
 
      apply automated posting rules to modify transactions.
-‘--forecast’
+'--forecast'
 
      generate future transactions from periodic transaction rules, for
      the next 6 months or till report end date.  In hledger-ui, also
      make ordinary future transactions visible.
-‘--commodity-style’
+'--commodity-style'
 
      Override the commodity style in the output for the specified
-     commodity.  For example ’EUR1.000,00’.
-‘--color=WHEN (or --colour=WHEN)’
+     commodity.  For example 'EUR1.000,00'.
+'--color=WHEN (or --colour=WHEN)'
 
      Should color-supporting commands use ANSI color codes in text
-     output.  ’auto’ (default): whenever stdout seems to be a
-     color-supporting terminal.  ’always’ or ’yes’: always, useful eg
-     when piping output into ’less -R’.  ’never’ or ’no’: never.  A
+     output.  'auto' (default): whenever stdout seems to be a
+     color-supporting terminal.  'always' or 'yes': always, useful eg
+     when piping output into 'less -R'. 'never' or 'no': never.  A
      NO_COLOR environment variable overrides this.
-‘--pretty[=WHEN]’
+'--pretty[=WHEN]'
 
      Show prettier output, e.g.  using unicode box-drawing characters.
-     Accepts ’yes’ (the default) or ’no’ (’y’, ’n’, ’always’, ’never’
-     also work).  If you provide an argument you must use ’=’, e.g.
-     ’–pretty=yes’.
+     Accepts 'yes' (the default) or 'no' ('y', 'n', 'always', 'never'
+     also work).  If you provide an argument you must use '=', e.g.
+     '-pretty=yes'.
 
    When a reporting option appears more than once in the command line,
 the last one takes precedence.
@@ -264,53 +264,53 @@
 
    hledger help options:
 
-‘-h --help’
+'-h --help'
 
      show general or COMMAND help
-‘--man’
+'--man'
 
      show general or COMMAND user manual with man
-‘--info’
+'--info'
 
      show general or COMMAND user manual with info
-‘--version’
+'--version'
 
      show general or ADDONCMD version
-‘--debug[=N]’
+'--debug[=N]'
 
      show debug output (levels 1-9, default: 1)
 
    A @FILE argument will be expanded to the contents of FILE, which
 should contain one command line option/argument per line.  (To prevent
-this, insert a ‘--’ argument before.)
+this, insert a '--' argument before.)
 
    By default the server listens on IP address 127.0.0.1, accessible
-only to local requests.  You can use ‘--host’ to change this, eg ‘--host
-0.0.0.0’ to listen on all configured addresses.
+only to local requests.  You can use '--host' to change this, eg '--host
+0.0.0.0' to listen on all configured addresses.
 
-   Similarly, use ‘--port’ to set a TCP port other than 5000, eg if you
+   Similarly, use '--port' to set a TCP port other than 5000, eg if you
 are running multiple hledger-web instances.
 
-   Both of these options are ignored when ‘--socket’ is used.  In this
-case, it creates an ‘AF_UNIX’ socket file at the supplied path and uses
+   Both of these options are ignored when '--socket' is used.  In this
+case, it creates an 'AF_UNIX' socket file at the supplied path and uses
 that for communication.  This is an alternative way of running multiple
 hledger-web instances behind a reverse proxy that handles authentication
 for different users.  The path can be derived in a predictable way, eg
-by using the username within the path.  As an example, ‘nginx’ as
-reverse proxy can use the variable ‘$remote_user’ to derive a path from
+by using the username within the path.  As an example, 'nginx' as
+reverse proxy can use the variable '$remote_user' to derive a path from
 the username used in a HTTP basic authentication.  The following
-‘proxy_pass’ directive allows access to all ‘hledger-web’ instances that
-created a socket in ‘/tmp/hledger/’:
+'proxy_pass' directive allows access to all 'hledger-web' instances that
+created a socket in '/tmp/hledger/':
 
   proxy_pass http://unix:/tmp/hledger/${remote_user}.socket;
 
-   You can use ‘--base-url’ to change the protocol, hostname, port and
+   You can use '--base-url' to change the protocol, hostname, port and
 path that appear in hyperlinks, useful eg for integrating hledger-web
-within a larger website.  The default is ‘http://HOST:PORT/’ using the
-server’s configured host address and TCP port (or ‘http://HOST’ if PORT
+within a larger website.  The default is 'http://HOST:PORT/' using the
+server's configured host address and TCP port (or 'http://HOST' if PORT
 is 80).
 
-   With ‘--file-url’ you can set a different base url for static files,
+   With '--file-url' you can set a different base url for static files,
 eg for better caching or cookie-less serving on high performance
 websites.
 
@@ -325,28 +325,28 @@
 
    You can restrict who can reach it by
 
-   • setting the IP address it listens on (see ‘--host’ above).  By
+   * setting the IP address it listens on (see '--host' above).  By
      default it listens on 127.0.0.1, accessible to all users on the
      local machine.
-   • putting it behind an authenticating proxy, using eg apache or nginx
-   • custom firewall rules
+   * putting it behind an authenticating proxy, using eg apache or nginx
+   * custom firewall rules
 
    You can restrict what the users who reach it can do, by
 
-   • using the ‘--capabilities=CAP[,CAP..]’ flag when you start it,
+   * using the '--capabilities=CAP[,CAP..]' flag when you start it,
      enabling one or more of the following capabilities.  The default
-     value is ‘view,add’:
-        • ‘view’ - allows viewing the journal file and all included
+     value is 'view,add':
+        * 'view' - allows viewing the journal file and all included
           files
-        • ‘add’ - allows adding new transactions to the main journal
+        * 'add' - allows adding new transactions to the main journal
           file
-        • ‘manage’ - allows editing, uploading or downloading the main
+        * 'manage' - allows editing, uploading or downloading the main
           or included files
 
-   • using the ‘--capabilities-header=HTTPHEADER’ flag to specify a HTTP
+   * using the '--capabilities-header=HTTPHEADER' flag to specify a HTTP
      header from which it will read capabilities to enable.  hledger-web
      on Sandstorm uses the X-Sandstorm-Permissions header to integrate
-     with Sandstorm’s permissions.  This is disabled by default.
+     with Sandstorm's permissions.  This is disabled by default.
 
 
 File: hledger-web.info,  Node: EDITING UPLOADING DOWNLOADING,  Next: RELOADING,  Prev: PERMISSIONS,  Up: Top
@@ -354,7 +354,7 @@
 3 EDITING, UPLOADING, DOWNLOADING
 *********************************
 
-If you enable the ‘manage’ capability mentioned above, you’ll see a new
+If you enable the 'manage' capability mentioned above, you'll see a new
 "spanner" button to the right of the search form.  Clicking this will
 let you edit, upload, or download the journal file or any files it
 includes.
@@ -365,7 +365,7 @@
    Normally whenever a file is changed in this way, hledger-web saves a
 numbered backup (assuming file permissions allow it, the disk is not
 full, etc.)  hledger-web is not aware of version control systems,
-currently; if you use one, you’ll have to arrange to commit the changes
+currently; if you use one, you'll have to arrange to commit the changes
 yourself (eg with a cron job or a file watcher like entr).
 
    Changes which would leave the journal file(s) unparseable or
@@ -395,7 +395,7 @@
 
 In addition to the web UI, hledger-web also serves a JSON API that can
 be used to get data or add new transactions.  If you want the JSON API
-only, you can use the ‘--serve-api’ flag.  Eg:
+only, you can use the '--serve-api' flag.  Eg:
 
 $ hledger-web -f examples/sample.journal --serve-api
 ...
@@ -411,7 +411,7 @@
 /accounttransactions/ACCOUNTNAME
 
    Eg, all account names in the journal (similar to the accounts
-command).  (hledger-web’s JSON does not include newlines, here we use
+command).  (hledger-web's JSON does not include newlines, here we use
 python to prettify it):
 
 $ curl -s http://127.0.0.1:5000/accountnames | python -m json.tool
@@ -452,7 +452,7 @@
                         "aprice": null,
 ...
 
-   Most of the JSON corresponds to hledger’s data types; for details of
+   Most of the JSON corresponds to hledger's data types; for details of
 what the fields mean, see the Hledger.Data.Json haddock docs and click
 on the various data types, eg Transaction.  And for a higher level
 understanding, see the journal docs.
@@ -460,25 +460,25 @@
    In some cases there is outer JSON corresponding to a "Report" type.
 To understand that, go to the Hledger.Web.Handler.MiscR haddock and look
 at the source for the appropriate handler to see what it returns.  Eg
-for ‘/accounttransactions’ it’s getAccounttransactionsR, returning a
-"‘accountTransactionsReport ...’".  Looking up the haddock for that we
+for '/accounttransactions' it's getAccounttransactionsR, returning a
+"'accountTransactionsReport ...'".  Looking up the haddock for that we
 can see that /accounttransactions returns an AccountTransactionsReport,
 which consists of a report title and a list of
 AccountTransactionsReportItem (etc).
 
    You can add a new transaction to the journal with a PUT request to
-‘/add’, if hledger-web was started with the ‘add’ capability (enabled by
+'/add', if hledger-web was started with the 'add' capability (enabled by
 default).  The payload must be the full, exact JSON representation of a
-hledger transaction (partial data won’t do).  You can get sample JSON
-from hledger-web’s ‘/transactions’ or ‘/accounttransactions’, or you can
+hledger transaction (partial data won't do).  You can get sample JSON
+from hledger-web's '/transactions' or '/accounttransactions', or you can
 export it with hledger-lib, eg like so:
 
 .../hledger$ stack ghci hledger-lib
 >>> writeJsonFile "txn.json" (head $ jtxns samplejournal)
 >>> :q
 
-   Here’s how it looks as of hledger-1.17 (remember, this JSON
-corresponds to hledger’s Transaction and related data types):
+   Here's how it looks as of hledger-1.17 (remember, this JSON
+corresponds to hledger's Transaction and related data types):
 
 {
     "tcomment": "",
@@ -566,7 +566,7 @@
     "tstatus": "Unmarked"
 }
 
-   And here’s how to test adding it with curl.  This should add a new
+   And here's how to test adding it with curl.  This should add a new
 entry to your journal:
 
 $ curl http://127.0.0.1:5000/add -X PUT -H 'Content-Type: application/json' --data-binary @txn.json
@@ -587,13 +587,13 @@
 6.1 Debug output
 ================
 
-You can add ‘--debug[=N]’ to the command line to log debug output.  N
+You can add '--debug[=N]' to the command line to log debug output.  N
 ranges from 1 (least output, the default) to 9 (maximum output).
 Typically you would start with 1 and increase until you are seeing
 enough.  Debug output goes to stderr, interleaved with the requests
 logged on stdout.  To capture debug output in a log file instead, you
 can usually redirect stderr, eg:
-‘hledger-web --debug=3 2>hledger-web.log’.
+'hledger-web --debug=3 2>hledger-web.log'.
 
 
 File: hledger-web.info,  Node: ENVIRONMENT,  Next: FILES,  Prev: DEBUG OUTPUT,  Up: Top
@@ -601,33 +601,33 @@
 7 ENVIRONMENT
 *************
 
-*LEDGER_FILE* The journal file path when not specified with ‘-f’.
+*LEDGER_FILE* The journal file path when not specified with '-f'.
 
-   On unix computers, the default value is: ‘~/.hledger.journal’.
+   On unix computers, the default value is: '~/.hledger.journal'.
 
-   A more typical value is something like ‘~/finance/YYYY.journal’,
-where ‘~/finance’ is a version-controlled finance directory and YYYY is
-the current year.  Or, ‘~/finance/current.journal’, where
+   A more typical value is something like '~/finance/YYYY.journal',
+where '~/finance' is a version-controlled finance directory and YYYY is
+the current year.  Or, '~/finance/current.journal', where
 current.journal is a symbolic link to YYYY.journal.
 
    The usual way to set this permanently is to add a command to one of
-your shell’s startup files (eg ‘~/.profile’):
+your shell's startup files (eg '~/.profile'):
 
 export LEDGER_FILE=~/finance/current.journal`
 
    On some Mac computers, there is a more thorough way to set
 environment variables, that will also affect applications started from
 the GUI (eg, Emacs started from a dock icon): In
-‘~/.MacOSX/environment.plist’, add an entry like:
+'~/.MacOSX/environment.plist', add an entry like:
 
 {
   "LEDGER_FILE" : "~/finance/current.journal"
 }
 
-   For this to take effect you might need to ‘killall Dock’, or reboot.
+   For this to take effect you might need to 'killall Dock', or reboot.
 
    On Windows computers, the default value is probably
-‘C:\Users\YOURNAME\.hledger.journal’.  You can change this by running a
+'C:\Users\YOURNAME\.hledger.journal'.  You can change this by running a
 command like this in a powershell window (let us know if you need to be
 an Administrator, and if this persists across a reboot):
 
@@ -643,9 +643,9 @@
 *******
 
 Reads data from one or more files in journal, timeclock, timedot, or CSV
-format.  The default file is ‘.hledger.journal’ in your home directory;
-this can be overridden with one or more ‘-f FILE’ options, or the
-‘LEDGER_FILE’ environment variable.
+format.  The default file is '.hledger.journal' in your home directory;
+this can be overridden with one or more '-f FILE' options, or the
+'LEDGER_FILE' environment variable.
 
 
 File: hledger-web.info,  Node: BUGS,  Prev: FILES,  Up: Top
@@ -653,7 +653,7 @@
 9 BUGS
 ******
 
-‘-f-’ doesn’t work (hledger-web can’t read from stdin).
+'-f-' doesn't work (hledger-web can't read from stdin).
 
    Query arguments and some hledger options are ignored.
 
@@ -664,26 +664,26 @@
 
 Tag Table:
 Node: Top225
-Node: OPTIONS2726
-Ref: #options2831
-Node: PERMISSIONS10625
-Ref: #permissions10764
-Node: EDITING UPLOADING DOWNLOADING12022
-Ref: #editing-uploading-downloading12203
-Node: RELOADING13045
-Ref: #reloading13179
-Node: JSON API13612
-Ref: #json-api13727
-Node: DEBUG OUTPUT19259
-Ref: #debug-output19384
-Node: Debug output19411
-Ref: #debug-output-119512
-Node: ENVIRONMENT19937
-Ref: #environment20057
-Node: FILES21406
-Ref: #files21506
-Node: BUGS21766
-Ref: #bugs21844
+Node: OPTIONS2682
+Ref: #options2787
+Node: PERMISSIONS10224
+Ref: #permissions10363
+Node: EDITING UPLOADING DOWNLOADING11575
+Ref: #editing-uploading-downloading11756
+Node: RELOADING12590
+Ref: #reloading12724
+Node: JSON API13157
+Ref: #json-api13272
+Node: DEBUG OUTPUT18760
+Ref: #debug-output18885
+Node: Debug output18912
+Ref: #debug-output-119013
+Node: ENVIRONMENT19430
+Ref: #environment19550
+Node: FILES20861
+Ref: #files20961
+Node: BUGS21209
+Ref: #bugs21287
 
 End Tag Table
 
diff --git a/hledger-web.txt b/hledger-web.txt
--- a/hledger-web.txt
+++ b/hledger-web.txt
@@ -13,7 +13,7 @@
        hledger web -- [OPTIONS] [QUERYARGS] # start from hledger
 
 DESCRIPTION
-       This  manual  is for hledger's web interface, version 1.29.1.  See also
+       This  manual  is for hledger's web interface, version 1.29.2.  See also
        the hledger manual for common concepts and file formats.
 
        hledger is a robust, user-friendly, cross-platform set of programs  for
@@ -608,4 +608,4 @@
 
 
 
-hledger-web-1.29.1                March 2023                    HLEDGER-WEB(1)
+hledger-web-1.29.2                April 2023                    HLEDGER-WEB(1)
