Skip to content

Commit 3086c02

Browse files
authored
make challenge headings monospace
1 parent 9a055d5 commit 3086c02

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

episodes/04-regular-expressions.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Other useful special characters are:
7575
7676
So, what are these going to match?
7777
78-
> ## ^[Oo]rgani.e\w*
78+
> ## `^[Oo]rgani.e\w*`
7979
> Can you guess what the regular expression `^[Oo]rgani.e\w*` will match?
8080
>
8181
> > ## Solution
@@ -89,7 +89,7 @@ So, what are these going to match?
8989
> {: .solution}
9090
{: .challenge}
9191
92-
> ## [Oo]rgani.e\w+$
92+
> ## `[Oo]rgani.e\w+$`
9393
> Can you guess what the regular expression `[Oo]rgani.e\w+$` will match?
9494
>
9595
> > ## Solution
@@ -103,7 +103,7 @@ So, what are these going to match?
103103
> {: .solution}
104104
{: .challenge}
105105
106-
> ## ^[Oo]rgani.e\w?\b
106+
> ## `^[Oo]rgani.e\w?\b`
107107
> Can you guess what the regular expression `^[Oo]rgani.e\w?\b` will match?
108108
>
109109
> > ## Solution
@@ -117,7 +117,7 @@ So, what are these going to match?
117117
> {: .solution}
118118
{: .challenge}
119119
120-
> ## ^[Oo]rgani.e\w?$
120+
> ## `^[Oo]rgani.e\w?$`
121121
> Can you guess what the regular expression `^[Oo]rgani.e\w?$` will match?
122122
>
123123
> > ## Solution
@@ -131,7 +131,7 @@ So, what are these going to match?
131131
> {: .solution}
132132
{: .challenge}
133133
134-
> ## \b[Oo]rgani.e\w{2}\b
134+
> ## `\b[Oo]rgani.e\w{2}\b`
135135
> Can you guess what the regular expression `\b[Oo]rgani.e\w{2}\b` will match?
136136
>
137137
> > ## Solution
@@ -145,7 +145,7 @@ So, what are these going to match?
145145
> {: .solution}
146146
{: .challenge}
147147
148-
> ## \b[Oo]rgani.e\b|\b[Oo]rgani.e\w{1}\b
148+
> ## `\b[Oo]rgani.e\b|\b[Oo]rgani.e\w{1}\b`
149149
> Can you guess what the regular expression `\b[Oo]rgani.e\b|\b[Oo]rgani.e\w{1}\b` will match?
150150
>
151151
> > ## Solution

0 commit comments

Comments
 (0)