|
1 | 1 | # regex-tutorial-gist
|
2 | 2 | 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