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
<pre> | |
<code> | |
page.url = {{ page.url }} | |
page.permalink = {{ page.permalink }} | |
page.dir = {{ page.dir }} | |
page.name = {{ page.name }} | |
page.path = {{ page.path }} | |
page.url = {{ page.url }} | |
url_split = {{ url_split | newline_to_br }} | |
url_size = {{ url_size }} |
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
# Header Level 1 | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis fugiat, accusamus aut tempora nam [maiores][1] totam. Dolorum unde, ipsum consectetur quas quia officiis, dolore, cum molestias magnam nobis voluptatem sequi? | |
[1]: http://docs.emmet.io/abbreviations/lorem-ipsum/ | |
``` | |
echo 'foobar'; | |
``` |
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
<h1 id="headerlevel1">Header Level 1</h1> | |
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis fugiat, accusamus aut tempora nam <a href="http://docs.emmet.io/abbreviations/lorem-ipsum/">maiores</a> totam. Dolorum unde, ipsum consectetur quas quia officiis, dolore, cum molestias magnam nobis voluptatem sequi?</p> | |
<pre><code class="(null)">echo 'foobar';</code></pre> | |
<h2 id="headerlevel2">Header Level 2</h2> | |
<p>Ipsa dicta illo, <a href="http://docs.emmet.io/abbreviations/lorem-ipsum/">maiores</a> animi reiciendis cum expedita iure. Saepe eos tempora commodi veritatis accusamus ipsa, <em>recusandae quod quibusdam cumque</em>, quia doloremque <code>laborum debitis dolorum dolore veniam natus animi</code> sunt.</p> | |
<ul> |
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
function state_name_to_abbr(str) { | |
var clean_name = str.replace(' ', '_').toLowerCase(); | |
var output = ''; | |
switch(clean_name) { | |
case 'alabama': | |
output = 'al'; | |
break; | |
case 'alaska': | |
output = 'ak'; | |
break; |
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
# place this in your aliases or bash profile | |
# cd to the directory of .txt files and run the command 'melt' | |
function melt(){ | |
FILE=_meltOutput.txt | |
rm -f $FILE | |
for f in *.txt | |
do | |
printf "$f - " | cat >> $FILE | |
cat $f | cat >> $FILE | |
echo >> $FILE |
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
@mixin fallBackground($color) { | |
background-color: rgb( red($color), green($color), blue($color) ); | |
background-color: $color; | |
} |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>BackgroundColor</key> | |
<string>393939</string> | |
<key>CharColor</key> | |
<string>c3bc25</string> | |
NewerOlder