Skip to content

Commit

Permalink
docs: fix regex value string quotation marks
Browse files Browse the repository at this point in the history
  • Loading branch information
gabor-boros committed Oct 21, 2021
1 parent ca3cfd4 commit f2a9051
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions www/docs/migrations/tempoit.md
Expand Up @@ -9,8 +9,8 @@ source-user = "-"

# Timewarrior config
timewarrior-arguments = ["log"]
timewarrior-client-tag-regex = "^(oc)$"
timewarrior-project-tag-regex = "^(log)$"
timewarrior-client-tag-regex = '^(oc)$'
timewarrior-project-tag-regex = '^(log)$'

# Target config
target = "tempo"
Expand Down
8 changes: 4 additions & 4 deletions www/docs/sources/timewarrior.md
Expand Up @@ -46,9 +46,9 @@ The source provides the following extra configuration options.
| Config option | Kind | Description | Example |
| ----------------------------- | ------- | ------------------------------------------------------------------- | ------------------------------------------------ |
| timewarrior-arguments | []string | Set additional arguments for the export command | timewarrior-arguments = "reviewed" |
| timewarrior-client-tag-regex | string | Set the regular expression for extracting Client names from tags | timewarrior-client-tag-regex = "^(CLIENT-\w+)$" |
| timewarrior-client-tag-regex | string | Set the regular expression for extracting Client names from tags | timewarrior-client-tag-regex = '^(CLIENT-\w+)$' |
| timewarrior-command | string | Set the timewarrior command | timewarrior-command = "timew" |
| timewarrior-project-tag-regex | string | Set the regular expression for extracting Project names from tags | timewarrior-project-tag-regex = "^PROJ-DEV-\w+$" |
| timewarrior-project-tag-regex | string | Set the regular expression for extracting Project names from tags | timewarrior-project-tag-regex = '^PROJ-DEV-\w+$' |
| timewarrior-unbillable-tag | string | Set the regular expression to identify which entries are unbillable | timewarrior-unbillable-tag = "unbillable" |

## Limitations
Expand All @@ -64,8 +64,8 @@ source-user = "-" # Timewarrior does not support multiple users

# Timewarrior config
timewarrior-arguments = ["log"]
timewarrior-client-tag-regex = "^(oc)$"
timewarrior-project-tag-regex = "^(log)$"
timewarrior-client-tag-regex = '^(oc)$'
timewarrior-project-tag-regex = '^(log)$'

# Target config
target = "tempo"
Expand Down

0 comments on commit f2a9051

Please sign in to comment.