Skip to content

Commit

Permalink
added link to source file
Browse files Browse the repository at this point in the history
  • Loading branch information
elmuerte committed Feb 24, 2024
1 parent 2eb81ab commit e1f1915
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ <h1>Little Big Adventure Game Quotes <sup>αlpha</sup></h1>
<dt>Game</dt>
<dd>{{ game }}</dd>
<dt>Quote ID</dt>
<dd><a href="#{{fqnId}}">{{ id }}</a></dd>
<dd>
<a href="#{{fqnId}}">{{ id }}</a>
<a href="https://github.com/magicball-network/quotes/blob/main/{{ game }}/{{ source }}.json">📝</a>
</dd>
<dt>Area</dt>
<dd>{{ area }}</dd>
{{#location}}
Expand Down Expand Up @@ -156,7 +159,9 @@ <h1>Little Big Adventure Game Quotes <sup>αlpha</sup></h1>
}
if (
params.query &&
!quote.message.toLowerCase().includes(params.query.toLowerCase())
!quote.message
.toLowerCase()
.includes(params.query.toLowerCase())
) {
return false;
}
Expand Down

0 comments on commit e1f1915

Please sign in to comment.