Skip to content

Commit 7a5bf61

Browse files
authored
Fix Markdown formatting (#1032)
1 parent 931969d commit 7a5bf61

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

docs/03.reference/01.functions/htmlcodeformat/function.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ categories:
99
---
1010

1111
Replaces special characters in a string with their HTML-escaped
12-
equivalents and inserts <pre> and </pre> tags at the beginning
12+
equivalents and inserts `<pre>` and `</pre>` tags at the beginning
1313
and end of the string.
14-
[version]
15-
HTML version to use. currently ignored.
16-
-1: The latest implementation of HTML
17-
2.0: HTML 2.0 (Default)
18-
3.2: HTML 3.2
14+
15+
[version] HTML version to use. Currently ignored.
16+
17+
- -1: The latest implementation of HTML
18+
- 2.0: HTML 2.0 (Default)
19+
- 3.2: HTML 3.2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
- True: if the regular expression is found, the first array element contains the length and position, respectively, of the first match.
2-
If the regular expression contains parentheses that group subexpressions, each subsequent array element contains the length and position, respectively, of the first occurrence of each group.
3-
If the regular expression is not found, the arrays each contain one element with the value 0.
2+
If the regular expression contains parentheses that group subexpressions, each subsequent array element contains the length and position, respectively, of the first occurrence of each group.
3+
If the regular expression is not found, the arrays each contain one element with the value 0.
44
- False: the function returns the position in the string where the match begins. Default.

docs/03.reference/05.objects/datetime/dateformat/_arguments/mask.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ Characters that show how Lucee displays a date:
1414
- z: Time zone in literal format, for example, IST
1515
- Z: Time zone in hours of offset (RFC 822 TimeZone), for example, +0530
1616
- X: Time zone in hours of offset in ISO 8601 format. The following are the three ways of using 'X':
17-
X: +05
18-
XX: +0530
19-
XXX: +5:30
20-
17+
+ X: +05
18+
+ XX: +0530
19+
+ XXX: +5:30
2120
- short: equivalent to m/d/y
2221
- medium: equivalent to mmm d, yyyy
2322
- long: equivalent to mmmm d, yyyy

docs/03.reference/05.objects/datetime/timeformat/_arguments/mask.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ Characters that show how Lucee displays a time:
1414
- z: Time zone in literal format, for example, IST
1515
- Z: Time zone in hours of offset (RFC 822 TimeZone), for example, +0530
1616
- X: Time zone in hours of offset in ISO 8601 format. The following are the three ways of using 'X':
17-
X: +05
18-
XX: +0530
19-
XXX: +5:30
20-
17+
+ X: +05
18+
+ XX: +0530
19+
+ XXX: +5:30
2120
- short: equivalent to h:mm tt
2221
- medium: equivalent to h:mm:ss tt
2322
- long: equivalent to h:mm:ss tt {timezone-3-letters}

docs/04.guides/13.Various/11.deploy-with-capistrano/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ set :use_sudo, false
5959
6060
desc "Run tasks in production environment"
6161
task :production do
62-
# Prompt to make really sure we want to deploy into production
62+
# Prompt to make really sure we want to deploy into production
6363
puts "\n\e[0;31m ######################################################################"
6464
puts " #\n # Are you REALLY sure you want to deploy to production?"
6565
puts " #\n # Enter y/N + enter to continue\n #"

0 commit comments

Comments
 (0)