summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2014-01-09 00:34:48 +0800
committerBehdad Esfahbod <behdad@behdad.org>2014-01-09 00:34:48 +0800
commitbeb6057e90baacaee1a4a69682a3d1ca9e9c0750 (patch)
tree50509223ecb1f22c5e0c946e4681bb716faf36a7
parent124b479090d81db9d861030ba817a98777786572 (diff)
[glyphy] Minor
-rw-r--r--README2
-rwxr-xr-xglyphy/glyphy_slides.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/README b/README
index c1e0792..8330e19 100644
--- a/README
+++ b/README
@@ -1,3 +1,5 @@
+http://github.com/behdad/slippy
+
This is Slippy, a pycairo-based slide design tool.
For samples, see the subdirectories.
The tool can generate PDF decks as well as present.
diff --git a/glyphy/glyphy_slides.py b/glyphy/glyphy_slides.py
index 1e5903a..b9c358b 100755
--- a/glyphy/glyphy_slides.py
+++ b/glyphy/glyphy_slides.py
@@ -622,7 +622,7 @@ def commit_slide(s, who=None):
for s in lines:
s = s.replace("&", "&amp;").replace("<", "&lt;")
if not s: s = ' '
- elif s[0] != ' ':
+ if s[0] != ' ':
s = "<b>%s</b>" % s
new_lines.append (s)