-
Notifications
You must be signed in to change notification settings - Fork 901
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve search file #418
Merged
Improve search file #418
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ae1d384
Add search input include
sylhare 478d05b
Compress search
sylhare 0fcb9b8
Add hide page from search
sylhare 2bf2fb5
Add excluded for page to be hidden
sylhare 1dafc65
Update search for multiple collections
sylhare 4dbb110
Update documentation
sylhare File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[ | ||
{% for post in site.posts %} | ||
{ | ||
{% unless post.excluded %} | ||
"title" : "{{ post.title | strip_newlines | escape }}", | ||
"category" : "{{ post.category }}", | ||
"tags" : "{{ post.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ post.url | relative_url }}", | ||
"date" : "{{ post.date | date: "%B %-d, %Y" }}", | ||
"excerpt" : {{ post.content | strip_html | strip_newlines | strip | escape | truncate: '250' | escape | jsonify }}, | ||
"content" : {{ post.content | strip_html | strip_newlines | strip | escape | jsonify }} | ||
{% endunless %} | ||
}{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% if site.pages.size > 0 %},{% endif %} | ||
{% for page in site.pages %} | ||
{ | ||
{% unless page.excluded or page.title == nil %} | ||
"title" : "{{ page.title | strip_newlines | escape }}", | ||
"category" : "{{ page.category }}", | ||
"tags" : "{{ page.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ page.url | relative_url }}", | ||
"date" : "{{ page.date | date: "%B %-d, %Y" | default: "N/A" }}", | ||
"excerpt" : {{ page.content | strip_html | strip_newlines | strip | escape | truncate: '250' | escape | jsonify }}, | ||
"content" : {{ page.content | strip_html | strip_newlines | strip | escape | jsonify }} | ||
{% endunless %} | ||
}{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% if site.collections.size > 0 %},{% endif %} | ||
{% for collection in site.collections %} | ||
{% for page in site[collection.label] %} | ||
{ | ||
{% if page.excluded or page.title != nil %} | ||
"title" : "{{ page.title | strip_newlines | escape }}", | ||
"category" : "{{ page.category }}", | ||
"tags" : "{{ page.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ page.url | relative_url }}", | ||
"date" : "{{ page.date | date: "%B %-d, %Y" | default: "N/A" }}", | ||
"excerpt" : {{ page.content | strip_html | strip_newlines | strip | escape | truncate: '250' | jsonify }}, | ||
"content" : {{ page.content | strip_html | strip_newlines | strip | escape | jsonify }} | ||
{% endif %} | ||
}{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,8 @@ | ||
--- | ||
--- | ||
[ | ||
{% for post in site.posts %} | ||
{ | ||
"title" : "{{ post.title | strip_newlines | escape }}", | ||
"category" : "{{ post.category }}", | ||
"tags" : "{{ post.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ post.url | relative_url }}", | ||
"date" : "{{ post.date | date: "%B %-d, %Y" }}", | ||
"excerpt" : {{ post.content | strip_html | truncate: '250' | escape | jsonify }}, | ||
"content" : {{ post.content | strip_html | escape | jsonify }} | ||
} {% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% if site.portfolio.size > 0 %},{% endif %} | ||
{% for page in site.portfolio %} | ||
{ | ||
{% if page.title != nil %} | ||
"title" : "{{ page.title | strip_newlines | escape }}", | ||
"category" : "{{ page.category }}", | ||
"tags" : "{{ page.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ page.url | relative_url }}", | ||
"date" : "{{ page.date | date: "%B %-d, %Y" }}", | ||
"excerpt" : {{ page.content | strip_html | truncate: '250' | jsonify }}, | ||
"content" : {{ page.content | strip_html | escape | jsonify }} | ||
{% endif %} | ||
} {% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
] | ||
{% comment %} | ||
The json is created in search_input.liquid and included here to be compresed | ||
{% endcomment %} | ||
{% capture _search %}{% include default/search_input.liquid %}{% endcapture %} | ||
{% assign emptyField = '{ },' %} | ||
{{ _search | split: " " | join: " " | remove: emptyField }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ layout: categories | |
title: Categories | ||
permalink: /categories/ | ||
hide: true | ||
excluded: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend reverting this commit. This makes all the hidden pages not searchable. But they are just hidden from the navigation bar, not meant to be hidden from the search. Or maybe introduce another page property like
searchable
to indicate if a page should appear in the search.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed that was the intent, hidden would mean both from search and navigation bar. Let me think for a solution to have a page hidden from the navigation bar but shown in the search 🤔 (I'd rather have a property to hide it from the search result then)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@EverettYou I added an
excluded
option, instead of usinghide
. Should be better 👍