
This file contains hidden or 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
Company: Safespace-Z | |
Contact: Lem Nosku | |
Title: Cosmological archeologist | |
Date: October 29, 2021 | |
Summary: Project summary & why this is something you are good at. | |
Deliverables: This, this, and that | |
References: For more details, look here | |
The_Plan: What is you planned approach? | |
Budget: It won’t be cheap | |
MyCompany: M Inc. |
This file contains hidden or 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
{% assign products = site.products | where_exp: "product", "product.price contains 'Free'" %} | |
{% for product in products reversed %} |
This file contains hidden or 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
# Description: Jekyll plugin to replace Markdown image syntax with HTML markup, written to work combined with Jekyll Picture Tag | |
Jekyll::Hooks.register :documents, :pre_render do |document, payload| | |
docExt = document.extname.tr('.', '') | |
# only process if we deal with a markdown file | |
if payload['site']['markdown_ext'].include? docExt | |
newContent = document.content.gsub(/!\[(.*)\]\(([^\)]+)\)(?:{:([^}]+)})*/, '{% picture default \2 --alt \1 --link /img/\2 %}') | |
document.content = newContent | |
end | |
end |