This file contains 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
html { | |
font-size: 93.8%; | |
background-color: #f1f2f3; | |
background-image: | |
-webkit-linear-gradient(0deg, transparent .05em, rgba(0,0,0,.05) .05em, rgba(0,0,0,.05) .125000em, transparent .125000em), | |
-webkit-linear-gradient(rgba(0,0,0,.05) .062500em, transparent .062500em); | |
background-image: | |
-moz-linear-gradient(0deg, transparent .05em, rgba(0,0,0,.05) .05em, rgba(0,0,0,.05) .125000em, transparent .125000em), | |
-moz-linear-gradient(rgba(0,0,0,.05) .062500em, transparent .062500em); | |
background-image: |
This file contains 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"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<!-- how to output depends on your processor, I used saxon Transform.exe tumblrimages.xml -xsl tumblr2curl.xsl -o output2.txt | |
then I copied pasted output2.txt into the my shell. Could have written something to parse the format etc. and download at the same time | |
but seemed overkill considering I would probably never use again. | |
--> | |
<xsl:output method="text"/> | |
<xsl:template match="post"> | |
<xsl:apply-templates select="photoset"/> |