diff options
-rw-r--r-- | blog/pixml.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/blog/pixml.md b/blog/pixml.md index 81d8ac0..95ca1de 100644 --- a/blog/pixml.md +++ b/blog/pixml.md @@ -206,13 +206,14 @@ page @ : prev "41" curr "42" next "43" - post : @ : title "foobar" - picture - @ : filename "foo" - desc "pic of foo" - picture ... - ... - time ... + post + @ : title "foobar" + time ... + picture + @ : filename "foo" + desc "pic of foo" + picture ... + ... post ... ... ``` @@ -303,7 +304,7 @@ xsl:stylesheet @ : src "{$base}{@filename}.jpg" alt "{@desc}" title "{@desc}" - updated : xsl:value-of : @ : select "time" + updated : xsl:value-of : @ : select "@time" ``` The trickier part here is concatenating the entries together. |