aboutsummaryrefslogtreecommitdiff
path: root/doc/tips/importing_posts_from_wordpress
diff options
context:
space:
mode:
authorhttps://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web>2013-04-13 11:27:55 -0400
committeradmin <admin@branchable.com>2013-04-13 11:27:55 -0400
commit379795e667b32567ede36fe37be84bd2634623a1 (patch)
tree494d9739cafa889f09b807a8430ad4f64a707410 /doc/tips/importing_posts_from_wordpress
parent00a94c3db14ab78b8764b77ceb37250041665878 (diff)
downloadikiwiki-379795e667b32567ede36fe37be84bd2634623a1.tar
ikiwiki-379795e667b32567ede36fe37be84bd2634623a1.tar.gz
nicer formatting
Diffstat (limited to 'doc/tips/importing_posts_from_wordpress')
-rw-r--r--doc/tips/importing_posts_from_wordpress/ikiwiki-wordpress-import.mdwn12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/tips/importing_posts_from_wordpress/ikiwiki-wordpress-import.mdwn b/doc/tips/importing_posts_from_wordpress/ikiwiki-wordpress-import.mdwn
index ad8f24a8f..a59d4b5ad 100644
--- a/doc/tips/importing_posts_from_wordpress/ikiwiki-wordpress-import.mdwn
+++ b/doc/tips/importing_posts_from_wordpress/ikiwiki-wordpress-import.mdwn
@@ -3,7 +3,7 @@
I converted the script to Perl. The new version gets your name and email automatically from your git config, converts the body of your posts to markdown, and also imports comments. More importantly it works with the latest wordpress, which the python version does not. Note that it's still not 100% perfect and I intend to make a few modifications still, but they will require access to the mysql database and that may render the script useless to some users.
-----
-<pre>
+[[!format perl '''
#!/usr/bin/env perl
use 5.16.1;
@@ -232,13 +232,13 @@ sub unique_comment_location {
return $location
}
-</pre>
+''']]
-----
I modified the script a bit so categories and tags would actually show up in the output file.
-----
-<pre>
+[[!format '''
#!/usr/bin/env python
"""
@@ -345,7 +345,7 @@ if __name__ == "__main__":
else:
main(*sys.argv[1:])
-</pre>
+''']]
-----
I have another version of the script, which uses the `timestamp` from the script, and inserts that as a \[[!meta date="foodate"]]. I'm posting it here just in case I happen to be doing something to the httpd.
@@ -353,7 +353,7 @@ I have another version of the script, which uses the `timestamp` from the script
(Hopefully I've escaped everything properly; if I missed something, check the source.)
-----
-<pre>
+[[!format '''
#!/usr/bin/env python
"""
@@ -458,7 +458,7 @@ if __name__ == "__main__":
else:
main(*sys.argv[1:])
-</pre>
+''']]
-----