Skip to content

Commit

Permalink
Merge pull request #71 from theohbrothers/docs/configuration-fix-conf…
Browse files Browse the repository at this point in the history
…iguration-option-newlinecharacter

Docs (configuration): Fix configuration option `newlineCharacter` description
  • Loading branch information
leojonathanoh committed Aug 10, 2021
2 parents 4916c14 + cf79131 commit afdb0dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ConvertOneNote2MarkDown-v2.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ Whether to clear escape symbols from md files
}
newlineCharacter = @{
description = @'
Whether to use Line Feed (LF) or Carriage Return + Line Feed (CRLF) for new lines - Default
Whether to use Line Feed (LF) or Carriage Return + Line Feed (CRLF) for new lines
1: LF (unix) - Default
2: CRLF (windows) - Default
2: CRLF (windows)
'@
default = 1
value = 1
Expand Down
4 changes: 2 additions & 2 deletions config.example.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $keepspaces = 1
# 2: Keep '\' symbol escape
$keepescape = 1

# Whether to use Line Feed (LF) or Carriage Return + Line Feed (CRLF) for new lines - Default
# Whether to use Line Feed (LF) or Carriage Return + Line Feed (CRLF) for new lines
# 1: LF (unix) - Default
# 2: CRLF (windows) - Default
# 2: CRLF (windows)
$newlineCharacter = 1

0 comments on commit afdb0dc

Please sign in to comment.