Table of Contents
Tumblr Plugin
Compatible with DokuWiki
- 2022-07-31 "Igor" unknown
- 2020-07-29 "Hogfather" unknown
- 2018-04-22 "Greebo" unknown
- 2017-02-19 "Frusterick Manners" yes
Installation
Search and install the plugin using the Extension Manager. Refer to Plugins on how to install plugins manually.
Syntax
{{tumblr>url=http://your.tumblr.com}}
Parameter | Description |
---|---|
url | Tumblr URL you want to embed. |
type | If you set this list , only title and date are shown. |
target | Wiki page to open post. Target page also have to embed tumblr plugin. (Default: Page that includes plugin) |
Example 1
Basic Usage.
{{tumblr>url=https://doku-plugin.tumblr.com/}}
Sample Page : http://sample.leaflette.com/tumblr/blog
Example 2
Show titles and dates only and open posts at 'tumblr' page. In this case, 'tumblr' page should have Example 1.
{{tumblr>url=http://https://doku-plugin.tumblr.com/&type=list&target=tumblr}}
Sample Page : http://sample.leaflette.com/tumblr/list
Configurations
This is a security risk when used on a freely accessible site.
Allow embedded HTML
To show all contents include images and movies, enabling htmlok is required.
Movies
Even if you allow embedded HTML, you still can't see movies in tumblr posts. It's because of SimplePie, RSS parser that DokuWiki uses, basically stripping iframe
tags. (See more info)
Find $strip_htmltags
on files in vendor/simplepie/simplepie
and remove iframe
.
// Line 16395 var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
Redirect your tumblr to DokuWiki
1. Paste below codes above </head>
tag in your tumblr theme.
<script type="text/javascript"> function go_wiki() { var addr = location.href; var params = addr.split("/"); var wiki_addr = 'Wiki URL contains a tumblr plugin'; var new_addr; if(params[3) { new_addr = wiki_addr + '?' + params[3] + '=' + params[4]; } else { new_addr = wiki_addr; } location.href = new_addr; } </script>
2. modify <body>
tag
<body onload="go_wiki()">
Posts per page
Development
Releases
Bugs / Feature Requests
Please report bugs or feature requests at the https://github.com/ipari/dokuwiki-plugin-tumblr/issues.
ToDo / Wish List
- Support more languages.