Skip to content

Commit

Permalink
Added missing countries
Browse files Browse the repository at this point in the history
  • Loading branch information
mnestorov committed Aug 21, 2024
1 parent a2ebab6 commit afa6257
Show file tree
Hide file tree
Showing 5 changed files with 805 additions and 2 deletions.
78 changes: 78 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# Node.js dependencies
node_modules/

# Dependency directories
jspm_packages/
bower_components/

# Lock files
yarn.lock
package-lock.json
pnpm-lock.yaml

# Environment variable files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Bower dependency directory (https://bower.io/)
bower_components/

# Build directories
build/
dist/
.tmp/

# MacOS-specific files
.DS_Store

# Windows-specific files
Thumbs.db
*.cab
*.msi
*.msm
*.msp

# IDE files
.idea/
.vscode/
*.suo
*.ntvs*
*.njsproj
*.sln
*.swp
*.pyc

# Miscellaneous
*.log
*.lock
!package-lock.json
*.bak
*.swp

# Yarn files
.pnp.*
.yarn/

# dotenv environment files
.env.local
.env.development
.env.test
.env.production

# static
static/
public/

# ignore Webpack
.webpack
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ <h1 class="h3 mb-0"><a href="./" class="text-decoration-none text-white">Regex P
</div>
</header>
<!-- Description Block -->
<div class="container content bg-transparent text-center">
<div class="container bg-transparent text-center">
<hr class="dotted">
<p class="lead">Designed to help developers easily generate and understand regular expressions for various use cases.</p>
<p class="">Select a pattern type, country, and programming language to see the corresponding regular expression and code example. You can also view a detailed explanation of how the regex works and export or copy the code for your project.</p>
<hr>
</div>
<div class="container py-5 mt-4 content">
<div class="container pb-5 mt-4 content">
<form>
<div class="mb-3">
<label for="patternType" class="form-label">Select Pattern Type:</label>
Expand Down
Loading

0 comments on commit afa6257

Please sign in to comment.