mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-25 00:12:18 +00:00
Compare commits
No commits in common. "70f8dc15719c95daa5d732237bc6c871912eb4f2" and "d31c4cafdbb089285f25f65c5e6fa033ee0fd342" have entirely different histories.
70f8dc1571
...
d31c4cafdb
12 changed files with 4 additions and 3609 deletions
3475
assets/js/lunr.js
3475
assets/js/lunr.js
File diff suppressed because it is too large
Load diff
|
@ -1,44 +0,0 @@
|
||||||
function displayResults (results, store) {
|
|
||||||
const searchResults = document.getElementById('results');
|
|
||||||
if (results.length) {
|
|
||||||
let resultList = '';
|
|
||||||
for (const n in results) {
|
|
||||||
const item = store[results[n].ref];
|
|
||||||
resultList += '<li><a href="' + item.url + '">' + item.title + '</a></li>'
|
|
||||||
if (item.description)
|
|
||||||
resultList += '<p>' + item.description + '</p>'
|
|
||||||
else
|
|
||||||
resultList += '<p>' + item.content.substring(0, 150) + '...</p>'
|
|
||||||
}
|
|
||||||
searchResults.innerHTML = resultList;
|
|
||||||
} else {
|
|
||||||
searchResults.innerHTML = 'No results found.';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const params = new URLSearchParams(window.location.search);
|
|
||||||
const query = params.get('query');
|
|
||||||
if (query) {
|
|
||||||
document.getElementById('search-query').setAttribute('value', query);
|
|
||||||
const idx = lunr(function () {
|
|
||||||
this.ref('id')
|
|
||||||
this.field('title', {
|
|
||||||
boost: 15
|
|
||||||
})
|
|
||||||
this.field('tags')
|
|
||||||
this.field('content', {
|
|
||||||
boost: 10
|
|
||||||
})
|
|
||||||
for (const key in window.store) {
|
|
||||||
this.add({
|
|
||||||
id: key,
|
|
||||||
title: window.store[key].title,
|
|
||||||
tags: window.store[key].tags,
|
|
||||||
content: window.store[key].content
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
const results = idx.search(query);
|
|
||||||
displayResults(results, window.store)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
---
|
|
||||||
title: Search me!
|
|
||||||
---
|
|
|
@ -44,7 +44,6 @@
|
||||||
{{- $content := replaceRE "a href=\"(#.*?)\"" (printf "%s%s%s" "a href=\"" .Permalink "$1\"") .Content -}}
|
{{- $content := replaceRE "a href=\"(#.*?)\"" (printf "%s%s%s" "a href=\"" .Permalink "$1\"") .Content -}}
|
||||||
{{- $content = replaceRE "img src=\"(.*?)\"" (printf "%s%s%s" "img src=\"" .Permalink "$1\"") $content -}}
|
{{- $content = replaceRE "img src=\"(.*?)\"" (printf "%s%s%s" "img src=\"" .Permalink "$1\"") $content -}}
|
||||||
{{- $content = replaceRE "<svg.*</svg>" "" $content -}}
|
{{- $content = replaceRE "<svg.*</svg>" "" $content -}}
|
||||||
{{- $content = replaceRE `-moz-tab-size:\d;-o-tab-size:\d;tab-size:\d;?` "" $content -}}
|
|
||||||
<description>{{ $content | html }}</description>
|
<description>{{ $content | html }}</description>
|
||||||
</item>
|
</item>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -14,4 +14,3 @@
|
||||||
</li>
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
{{ partial "search-form.html" . }}
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<p class="powered_by">{"powered_by": [{{- range $i, $link := .Site.Params.powerLinks }}{{ if $i }}, {{ end }}"<a target="_blank" href="{{ $link.url }}">{{ $link.title }}</a>"{{ end }}]}
|
<p class="powered_by">{"powered_by": [{{- range $i, $link := .Site.Params.powerLinks }}{{ if $i }}, {{ end }}"<a target="_blank" href="{{ $link.url }}">{{ $link.title }}</a>"{{ end }}]}
|
||||||
<br><<a target="_blank" href="https://github.com/jbowdre/runtimeterror">view source</a>></p>
|
<br><<a target="_blank" href="https://github.com/jbowdre/runtimeterror">view source</a>></p>
|
||||||
|
|
||||||
{{ partial "search-index.html" .}}
|
|
||||||
{{ if (findRE "<pre" .Content 1) }}
|
{{ if (findRE "<pre" .Content 1) }}
|
||||||
{{ $jsCopy := resources.Get "js/code-copy-button.js" | minify }}
|
{{ $jsCopy := resources.Get "js/code-copy-button.js" | minify }}
|
||||||
<script src="{{ $jsCopy.RelPermalink }}"></script>
|
<script src="{{ $jsCopy.RelPermalink }}"></script>
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
<form id="search"
|
|
||||||
action='{{ with .GetPage "/search" }}{{ .Permalink }}{{ end }}' method="get">
|
|
||||||
<input type="input" id="search-query" name="query" placeholder="grep -i" aria-label="search text">
|
|
||||||
<button type="submit" aria-label="search button"><i class="fa-solid fa-magnifying-glass"></i></button>
|
|
||||||
</form>
|
|
|
@ -1,17 +0,0 @@
|
||||||
<script>
|
|
||||||
window.store = {
|
|
||||||
{{ range where .Site.Pages "Section" "posts" }}
|
|
||||||
"{{ .Permalink }}": {
|
|
||||||
"title": "{{ .Title }}",
|
|
||||||
"tags": [{{ range .Params.Tags }}"{{ . }}",{{ end }}],
|
|
||||||
"content": {{ .Content | plainify }},
|
|
||||||
"description": {{ .Description | plainify }},
|
|
||||||
"url": "{{ .Permalink }}"
|
|
||||||
},
|
|
||||||
{{ end }}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
{{ $jsLunr := resources.Get "js/lunr.js" | minify }}
|
|
||||||
<script src="{{ $jsLunr.RelPermalink }}"></script>
|
|
||||||
{{ $jsSearch := resources.Get "js/search.js" | minify }}
|
|
||||||
<script src="{{ $jsSearch.RelPermalink }}"></script>
|
|
|
@ -1,9 +0,0 @@
|
||||||
{{ define "main" }}
|
|
||||||
{{ partial "search-form.html" . }}
|
|
||||||
<br>
|
|
||||||
<ul id="results">
|
|
||||||
<li>
|
|
||||||
Enter a keyword above to search this site.
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
{{ end }}
|
|
|
@ -1,8 +1,3 @@
|
||||||
/* color overrides */
|
|
||||||
:root {
|
|
||||||
--code: var(--base06);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* override page max-width */
|
/* override page max-width */
|
||||||
.page {
|
.page {
|
||||||
max-width: 72rem;
|
max-width: 72rem;
|
||||||
|
@ -209,45 +204,3 @@ ul.pagination li {
|
||||||
small[style^="opacity: .5"] {
|
small[style^="opacity: .5"] {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* code overrides */
|
|
||||||
pre,
|
|
||||||
code,
|
|
||||||
kbd,
|
|
||||||
samp {
|
|
||||||
color: var(--code);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* search box styling */
|
|
||||||
form {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
outline: 0.25rem solid var(--bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
|
||||||
flex-grow: 2;
|
|
||||||
border: none;
|
|
||||||
background-color: var(--off-bg);
|
|
||||||
color: var(--off-fg);
|
|
||||||
height: 1.5rem;
|
|
||||||
border-radius: 0.25rem;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
font-family: var(--font-monospace);
|
|
||||||
}
|
|
||||||
|
|
||||||
input:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
form:focus-within {
|
|
||||||
outline: 1px solid var(--logo);
|
|
||||||
}
|
|
||||||
|
|
||||||
form button {
|
|
||||||
outline: none;
|
|
||||||
border: none;
|
|
||||||
background-color: var(--off-bg);
|
|
||||||
color: var(--link);
|
|
||||||
}
|
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
--base01: #282828; /* off-bg */
|
--base01: #282828; /* off-bg */
|
||||||
--base02: #383838; /* inner-bg */
|
--base02: #383838; /* inner-bg */
|
||||||
--base03: #585858; /* muted */
|
--base03: #585858; /* muted */
|
||||||
--base04: #abaaaa; /* off-fg */
|
--base04: #cfcfcf; /* off-fg */
|
||||||
--base05: #d8d8d8; /* fg */
|
--base05: #d8d8d8; /* fg */
|
||||||
--base06: #cfcfcf; /* code */
|
--base06: #e8e8e8;
|
||||||
--base07: #5f8700; /* user prompt */
|
--base07: #5f8700; /* user prompt */
|
||||||
--base08: #ab4642; /* root prompt */
|
--base08: #ab4642; /* root prompt */
|
||||||
--base09: #dc9656;
|
--base09: #dc9656;
|
||||||
|
|
|
@ -58,9 +58,7 @@ module.exports = {
|
||||||
// appear, the file will be ignored.
|
// appear, the file will be ignored.
|
||||||
excludePatterns: [
|
excludePatterns: [
|
||||||
'/node_modules/',
|
'/node_modules/',
|
||||||
'/vendor/',
|
'/vendor/'
|
||||||
'/series/',
|
|
||||||
'/tags/'
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue