Skip to content

Commit 057c8d4

Browse files
author
ikrima
committedMay 4, 2021
add '_' as search separator
1 parent a8b133b commit 057c8d4

File tree

3 files changed

+10
-60
lines changed

3 files changed

+10
-60
lines changed
 

Diff for: ‎.gitignore

+4-59
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,29 @@
11
# Node template
2-
3-
# Logs
4-
logs
5-
*.log
62
npm-debug.log*
73
yarn-debug.log*
84
yarn-error.log*
9-
10-
# Runtime data
11-
pids
12-
*.pid
13-
*.seed
14-
*.pid.lock
15-
16-
# Directory for instrumented libs generated by jscoverage/JSCover
17-
lib-cov
18-
19-
# Coverage directory used by tools like istanbul
20-
coverage
21-
22-
# nyc test coverage
23-
.nyc_output
24-
25-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
265
.grunt
27-
28-
# Bower dependency directory (https://bower.io/)
29-
bower_components
30-
31-
# node-waf configuration
32-
.lock-wscript
33-
34-
# Compiled binary addons (https://nodejs.org/api/addons.html)
35-
build/Release
36-
37-
# Dependency directories
386
node_modules/
397
jspm_packages/
40-
41-
# Typescript v1 declaration files
428
typings/
43-
44-
# Optional npm cache directory
459
.npm
46-
47-
# Optional eslint cache
4810
.eslintcache
49-
50-
# Optional REPL history
5111
.node_repl_history
52-
53-
# Output of 'npm pack'
54-
*.tgz
55-
56-
# Yarn Integrity file
5712
.yarn-integrity
5813

59-
# dotenv environment variables file
60-
.env
61-
6214
# IDE
6315
.idea/*
6416
*.iml
6517
*.sublime-*
6618

6719
# OSX
6820
.DS_Store
69-
.vscode
70-
71-
# Docs Custom
72-
.cache/
73-
.netlify
74-
public
75-
yarn-error.log
7621

7722
# config files
7823
.env.*
7924
!.env.example
8025

81-
# Cypress
82-
test/cypress/screenshots
83-
test/cypress/videos
84-
site/
26+
# Docs Custom
27+
/.cache/
28+
/.netlify
29+
/site/

Diff for: ‎.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"eslint.enable": true
3+
}

Diff for: ‎mkdocs.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ copyright: Copyright © 2016 - 2021 ikrima
1515

1616
# Configuration
1717
docs_dir: content
18+
use_directory_urls: true
19+
strict: true
1820

1921
# nav:
2022
# - Home: index.md
@@ -67,7 +69,7 @@ extra:
6769
# Plugins
6870
plugins:
6971
- search:
70-
separator: '[\s\-\.]+'
72+
separator: '[\s\-\.\_]+'
7173
prebuild_index: true
7274
- git-revision-date-localized
7375
- awesome-pages:

0 commit comments

Comments
 (0)
Please sign in to comment.