diff options
author | Huy Z <huyz@users.noreply.github.com> | 2022-03-24 11:48:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-24 14:48:59 -0400 |
commit | 4b129dc70956e45a92252a7d52196036db8a92b0 (patch) | |
tree | e8ea985150dc0c8733b36af823655e74345db9ca | |
parent | 8f30cc728df73257888dba7afbc812b4065c93db (diff) |
Fixed TOML syntax in `config.md` (#67)
-rw-r--r-- | config.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -24,8 +24,8 @@ An example config file (with some default config values) can be found in [exampl | ----------------------- | --------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- | | `use_page_scrolling` | whether to enable page-like scrolling behavior, which automatically adjusts the view based on the scrolling direction | `true` | | `use_pacman_loading` | whether to use a pacman loading screen or a plain loading screen | `true` | -| `url_open_command` | the command the application uses to open an url in browser | `{ command: 'open', options: [] }` | -| `article_parse_command` | the command the application uses to parse an article into a readable text | `{ command: 'article_md', options: ['--format', 'html'] }` | +| `url_open_command` | the command the application uses to open an url in browser | `{ command = 'open', options = [] }` | +| `article_parse_command` | the command the application uses to parse an article into a readable text | `{ command = 'article_md', options = ['--format', 'html'] }` | | `client_timeout` | the timeout (in seconds) when the application's client makes an API request | `32` | ### Article Parse Command @@ -51,7 +51,7 @@ By default, `hackernews-TUI` uses [`article_md`](https://github.com/aome510/arti One alternative is [`mercury-parser`](https://github.com/postlight/mercury-parser#installation): ```toml -article_parse_command = { command: 'mercury-parser', options: [] } +article_parse_command = { command = 'mercury-parser', options = [] } ``` ## Theme |