BitBoxSwiss / user-guides

User guides for Shift Crypto's products
https://guides.shiftcrypto.ch/
MIT License
1 stars 2 forks source link

fix partly rendered search preview #27

Closed thisconnect closed 3 years ago

thisconnect commented 3 years ago

The preview in search results dropdown showed sometimes jekyll includes when it should display text snippets of the results.

The problem is when search-data.json is rendered every file after S has not been rendered yet as jekyll processes all files in alphabetical order. In that case the search might display jekyll includes or raw markdown.

Renaming search-data.json to zzzz-search-data with a permalink fixes this, see upstream fix. Also removed .json as the file is a template that will render to JSON.

https://github.com/pmarsceill/just-the-docs/issues/191#issuecomment-557836956

thisconnect commented 3 years ago

i.e. search for "pending"

Before:

Screen Shot 2021-01-18 at 4 18 57 PM

After:

Screen Shot 2021-01-18 at 4 19 31 PM

jstrnbrg commented 3 years ago

tested, LGTM @thisconnect