Skip to content
Snippets Groups Projects
Unverified Commit 3c584e2d authored by Patrick Marsceill's avatar Patrick Marsceill Committed by GitHub
Browse files

Merge pull request #218 from tiaitsch85/patch-1

bugfix in search.rake
parents ec3bfecc 81aad708
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,19 @@ jobs: ...@@ -17,6 +17,19 @@ jobs:
--volume="${{ github.workspace }}:/srv/jekyll" \ --volume="${{ github.workspace }}:/srv/jekyll" \
jekyll/builder:latest /bin/bash -c "gem install bundler && chmod 777 /srv/jekyll && jekyll build" jekyll/builder:latest /bin/bash -c "gem install bundler && chmod 777 /srv/jekyll && jekyll build"
search:
name: Test search rake command
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build the site in the jekyll/builder container
run: |
docker run --rm \
--volume="${{ github.workspace }}:/srv/jekyll" \
jekyll/builder:3.8.5 /bin/bash -c "gem install bundler && chmod 777 /srv/jekyll && jekyll build && bundle exec just-the-docs rake search:init"
css: css:
name: Stylelint name: Stylelint
runs-on: ubuntu-latest runs-on: ubuntu-latest
......
...@@ -14,8 +14,8 @@ namespace :search do ...@@ -14,8 +14,8 @@ namespace :search do
{ {
{% assign comma = false %} {% assign comma = false %}
{% for page in site.html_pages %}{% if page.search_exclude != true %}{% if comma == true%},{% endif %}"{{ forloop.index0 }}": { {% for page in site.html_pages %}{% if page.search_exclude != true %}{% if comma == true%},{% endif %}"{{ forloop.index0 }}": {
"title": "{{ page.title | replace: '&', '&' }}", "title": "{{ page.title | replace: \'&\', \'&\' }}",
"content": "'+content+'", "content": "\'+content+\'",
"url": "{{ page.url | absolute_url }}", "url": "{{ page.url | absolute_url }}",
"relUrl": "{{ page.url }}" "relUrl": "{{ page.url }}"
}{% assign comma = true %} }{% assign comma = true %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment