-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
49 lines (40 loc) · 2.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Readability 2 pocket (read it later) converter</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="index.css">
<link href='https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:700' rel='stylesheet' type='text/css'>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31547032-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<h1>Readability 2 pocket (read it later) converter</h1>
<p>If by any chance you feel like moving from readability to pocket (formerly read it later), you've come to the right place!! This tool will help you to export your reading list (but not the recommendations) from readability and transform them to a format that can be imported in pocket.<p>
<p>Here's what you need to do :</p>
<ol>
<li>Go to your <a href="https://www.readability.com/account/export">readability export</a> page and click on the export button. This will download a
<code>.json</code> file.</li>
<li>Copy the content of the <code>.json</code> file you just downloaded and paste it here :
<textarea id="readability-json" placeholder="paste your readability export here..."></textarea>
</li>
<li><button id="convert">Click here to convert!</button></li>
<li>Copy the content from the area (just after) and save it to an <code>.html</code> file :
<textarea id="instapaper-html" placeholder="here will be the content to import into pocket..."></textarea>
</li>
<li>Go to your <a href="http://getpocket.com/import/instapaper">pocket import</a> page and load the <code>.html</code> file you just created.</li>
<li>Enjoy your articles on pocket...</li>
</ol>
<p>If you have any problem using this tool or if you think you can improve it. Please visit the <a href="https://github.com/hsablonniere/readability2pocket">github</a> page and give your thoughts.</p>
<footer><a href="https://twitter.com/#!/hsablonniere">@hsablonniere</a></footer>
<script type="text/javascript" src="index.js"></script>
</body>
</html>