├── .alexrc.yml ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yml ├── chapters └── en │ ├── advanced-examples.mdx │ ├── alternation.mdx │ ├── anchors.mdx │ ├── basics.mdx │ ├── character-classes.mdx │ ├── character-escapes.mdx │ ├── escapes.mdx │ ├── flags.mdx │ ├── groups.mdx │ ├── introduction.mdx │ ├── lookaround.mdx │ ├── next-steps.mdx │ └── repetition.mdx ├── contribution.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── meta.json ├── package.json ├── readme.md ├── src ├── components │ ├── boxes │ │ ├── index.css │ │ └── index.js │ ├── chapter-list.js │ ├── example │ │ ├── index.css │ │ └── index.js │ ├── footer.js │ ├── header.js │ ├── lang-selector.js │ ├── seo.js │ └── theme-toggle.js ├── layouts │ └── chapter.js ├── pages │ ├── 404.js │ ├── book.js │ ├── en │ │ └── chapters.js │ └── index.js └── styles │ ├── global.css │ └── regex.css ├── static ├── favicon.ico └── images │ ├── cover │ ├── cover.fig │ ├── cover.pdf │ └── cover.svg │ └── screenshot.jpg └── vercel.json /.alexrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/.alexrc.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public 3 | .cache 4 | .now 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | tabWidth: 4 2 | -------------------------------------------------------------------------------- /chapters/en/advanced-examples.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/advanced-examples.mdx -------------------------------------------------------------------------------- /chapters/en/alternation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/alternation.mdx -------------------------------------------------------------------------------- /chapters/en/anchors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/anchors.mdx -------------------------------------------------------------------------------- /chapters/en/basics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/basics.mdx -------------------------------------------------------------------------------- /chapters/en/character-classes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/character-classes.mdx -------------------------------------------------------------------------------- /chapters/en/character-escapes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/character-escapes.mdx -------------------------------------------------------------------------------- /chapters/en/escapes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/escapes.mdx -------------------------------------------------------------------------------- /chapters/en/flags.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/flags.mdx -------------------------------------------------------------------------------- /chapters/en/groups.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/groups.mdx -------------------------------------------------------------------------------- /chapters/en/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/introduction.mdx -------------------------------------------------------------------------------- /chapters/en/lookaround.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/lookaround.mdx -------------------------------------------------------------------------------- /chapters/en/next-steps.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/next-steps.mdx -------------------------------------------------------------------------------- /chapters/en/repetition.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/chapters/en/repetition.mdx -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/contribution.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/meta.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/readme.md -------------------------------------------------------------------------------- /src/components/boxes/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/boxes/index.css -------------------------------------------------------------------------------- /src/components/boxes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/boxes/index.js -------------------------------------------------------------------------------- /src/components/chapter-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/chapter-list.js -------------------------------------------------------------------------------- /src/components/example/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/example/index.css -------------------------------------------------------------------------------- /src/components/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/example/index.js -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/lang-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/lang-selector.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/components/theme-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/components/theme-toggle.js -------------------------------------------------------------------------------- /src/layouts/chapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/layouts/chapter.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/pages/book.js -------------------------------------------------------------------------------- /src/pages/en/chapters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/pages/en/chapters.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/regex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/src/styles/regex.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/cover/cover.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/static/images/cover/cover.fig -------------------------------------------------------------------------------- /static/images/cover/cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/static/images/cover/cover.pdf -------------------------------------------------------------------------------- /static/images/cover/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/static/images/cover/cover.svg -------------------------------------------------------------------------------- /static/images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/static/images/screenshot.jpg -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyasminocha/regex-for-regular-folk/HEAD/vercel.json --------------------------------------------------------------------------------