Skip to content

Commit

Permalink
Fix External Articles Search Bug
Browse files Browse the repository at this point in the history
 * Fix yousinix#3
  • Loading branch information
yousinix committed Mar 6, 2019
1 parent 0621938 commit f722136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion search.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ layout: null
"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"url" : "{{ post.external_url | default: post.url | relative_url }}",
"date" : "{{ post.date }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
Expand Down

0 comments on commit f722136

Please sign in to comment.