The following checklist should be actioned after all major development work has been completed.
Check the website:
- Responds to different devices and screen sizes appropriately.
- The design of the site is displayed as expected.
{% comment %} | |
Parse Markdown table within content. | |
{% endcomment %} | |
{% assign page_content = page.content | strip_newlines %} | |
{% assign page_content = page_content | replace_first: '<p>|', '<table><tr><td>' %} | |
{% assign page_content = page_content | replace: ' | ', '</td><td>' %} | |
{% assign page_content = page_content | replace: ' | ', '</td><td>' %} | |
{% assign page_content = page_content | replace: ' | ', '</td><td>' %} | |
{% assign page_content = page_content | replace: ' | ', '</td><td>' %} |
/* jQuery Validate Emails with Regex */ | |
function validateEmail(Email) { | |
var pattern = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/; | |
return $.trim(Email).match(pattern) ? true : false; | |
} |
#!/usr/bin/php | |
<?php | |
# -*- coding: utf-8 -*- | |
# <bitbar.title>Currency Tracker</bitbar.title> | |
# <bitbar.version>1.0</bitbar.version> | |
# <bitbar.author>Ketan Mistry</bitbar.author> | |
# <bitbar.author.github></bitbar.author.github> | |
# <bitbar.desc>Currency checker using fixer.io.</bitbar.desc> | |
# <bitbar.image></bitbar.image> |