Skip to content

Commit 55c3235

Browse files
committed
remove custome permalink and layout from setup and reference page
1 parent c323792 commit 55c3235

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

reference.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
---
2-
layout: reference
32
title: Reference
4-
permalink: /reference/
53
---
64

75
# Regular Expressions Cheat Sheet
@@ -14,7 +12,7 @@ permalink: /reference/
1412
- `\s` matches any space, tab, or newline
1513
- `^` asserts the position at the start of the line. So what you put after it will only match if they are the first characters of a line.
1614
- `$` asserts the position at the end of the line. So what you put before it will only match if they are the last characters of a line.
17-
- `\b` adds a word boundary. Putting this either side of a stops the regular expression matching longer variants of words.
15+
- `\b` adds a word boundary. Putting this either side of a stops the regular expression matching longer variants of words.
1816
- `*` matches the preceding element zero or more times. For example, `ab*c` matches "ac", "abc", "abbbc", etc.
1917
- `+` matches the preceding element one or more times. For example, `ab+c` matches "abc", "abbbc" but not "ac".
2018
- `?` matches when the preceding character appears one or zero times

setup.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
---
2-
layout: page
32
title: Setup
4-
permalink: /setup/
53
---
64
1. Installation instructions for core lessons are included in the [workshop template's home page][template],
75
so that they are all in one place.

0 commit comments

Comments
 (0)