Skip to content

Commit 2bfae20

Browse files
copied and pasted information for README and the Develop folder
1 parent aa0469c commit 2bfae20

File tree

2 files changed

+81
-0
lines changed

2 files changed

+81
-0
lines changed

Develop/gist-template.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Title (replace with your title)
2+
3+
Introductory paragraph (replace this with your text)
4+
5+
## Summary
6+
7+
Briefly summarize the regex you will be describing and what you will explain. Include a code snippet of the regex. Replace this text with your summary.
8+
9+
## Table of Contents
10+
11+
- [Anchors](#anchors)
12+
- [Quantifiers](#quantifiers)
13+
- [OR Operator](#or-operator)
14+
- [Character Classes](#character-classes)
15+
- [Flags](#flags)
16+
- [Grouping and Capturing](#grouping-and-capturing)
17+
- [Bracket Expressions](#bracket-expressions)
18+
- [Greedy and Lazy Match](#greedy-and-lazy-match)
19+
- [Boundaries](#boundaries)
20+
- [Back-references](#back-references)
21+
- [Look-ahead and Look-behind](#look-ahead-and-look-behind)
22+
23+
## Regex Components
24+
25+
### Anchors
26+
27+
### Quantifiers
28+
29+
### OR Operator
30+
31+
### Character Classes
32+
33+
### Flags
34+
35+
### Grouping and Capturing
36+
37+
### Bracket Expressions
38+
39+
### Greedy and Lazy Match
40+
41+
### Boundaries
42+
43+
### Back-references
44+
45+
### Look-ahead and Look-behind
46+
47+
## Author
48+
49+
A short section about the author with a link to the author's GitHub profile (replace with your information and a link to your profile)

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,34 @@
11
# regex-tutorial-gist
22
This is a gist for regex.
3+
4+
# Regex Tutorial Starter Code
5+
6+
read readme for it and write.
7+
8+
Developers write code, but they also write about code. Take a moment to search the web for tutorials about any of the subjects you’ve learned so far in this course. You’re likely to find thousands of tutorials written by developers of all skill levels, but especially by junior developers—like you!
9+
10+
Your Challenge this week is to create a tutorial that explains how a specific regular expression, or regex, functions by breaking down each part of the expression and describing what it does. You'll use the template provided in the starter code to create your tutorial.
11+
12+
AS A web development student
13+
I WANT a tutorial explaining a specific regex
14+
SO THAT I can understand the search pattern the regex defines
15+
16+
GIVEN a regex tutorial
17+
WHEN I open the tutorial
18+
THEN I see a descriptive title and introductory paragraph explaining the purpose of the tutorial, a summary describing the regex featured in the tutorial, a table of contents linking to different sections that break down each component of the regex and explain what it does, and a section about the author with a link to the author’s GitHub profile
19+
WHEN I click on the links in the table of contents
20+
THEN I am taken to the corresponding sections of the tutorial
21+
WHEN I read through each section of the tutorial
22+
THEN I find a detailed explanation of what a specific component of the regex does
23+
WHEN I reach the end of the tutorial
24+
THEN I find a section about the author and a link to the author’s GitHub profile
25+
26+
watch the video before starting.
27+
one of the simpler assignments.
28+
how to create a gist and its URL.
29+
30+
Instead of creating a repository, you’ll publish a GitHub gist. GitHub describes a gist as a simple way to share code snippets with others. It’s also an ideal way to demonstrate a technique, teach a principle, or show off a solution. It functions just like a repository, and you’ll use Markdown to create it, just as you do with your READMEs. Gists can include code, images, links, and anything else you can include in a README.
31+
32+
After you’ve cloned the starter code, learn how to create a gistLinks to an external site.. You can also watch this video on how to use gistsLinks to an external site..
33+
34+
BROOKE SAYS READ ALL OF IT.

0 commit comments

Comments
 (0)