aboutsummaryrefslogtreecommitdiffstats
path: root/nikola/plugins/compile_rest/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'nikola/plugins/compile_rest/__init__.py')
-rw-r--r--nikola/plugins/compile_rest/__init__.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/nikola/plugins/compile_rest/__init__.py b/nikola/plugins/compile_rest/__init__.py
index 4191add..b0a0c00 100644
--- a/nikola/plugins/compile_rest/__init__.py
+++ b/nikola/plugins/compile_rest/__init__.py
@@ -44,6 +44,8 @@ from .slides import slides
directives.register_directive('slides', slides)
from .gist_directive import GitHubGist
directives.register_directive('gist', GitHubGist)
+from .soundcloud import soundcloud
+directives.register_directive('soundcloud', soundcloud)
from nikola.plugin_categories import PageCompiler
@@ -75,10 +77,10 @@ class CompileRest(PageCompiler):
tags=""):
with codecs.open(path, "wb+", "utf8") as fd:
if onefile:
- fd.write('.. title: %s\n' % title)
- fd.write('.. slug: %s\n' % slug)
- fd.write('.. date: %s\n' % date)
- fd.write('.. tags: %s\n' % tags)
+ fd.write('.. title: {0}\n'.format(title))
+ fd.write('.. slug: {0}\n'.format(slug))
+ fd.write('.. date: {0}\n'.format(date))
+ fd.write('.. tags: {0}\n'.format(tags))
fd.write('.. link: \n')
fd.write('.. description: \n\n')
fd.write("\nWrite your post here.")