-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
43 lines (39 loc) · 1.54 KB
/
help.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
<div class="help">
<h2><a href="javascript:toggleHelp()">Help with Feeds</a></h2>
<span id="helpDetail">
Most Podcast apps let you import a Feed directly. If you're on a modern device, use the Full Feed.<br>
If you're on an older device that can't handle large feeds, or modern HTTPS, use the Tiny Feed.
<h3>Apple Podcasts - Mac</h3>
<li>Right click and copy the Full Feed link above
<li>Launch Podcasts
<li>Click on Library
<li>Click on the three dots (upper right)
<li>Select Add a Show by URL...
<li>Paste the link and click Follow
<h3>Google Podcasts - Android</h3>
<li>Press and hold on the Full Feed link above, and choose "Copy link address"
<li>Launch Google Podcasts</li>
<li>Tap on Library</li>
<li>Click on the "Link+"" icon at the top</li>
<li>Paste the Link you copied above</li>
<li>Click Subscribe</li>
<h3>drPodder - webOS</h3>
<li>Use the integrated Directory in <a href="https://appcatalog.webosarchive.org/app/drPodder">drPodder Redux</a><br>
OR
<li>Launch drPodder</li>
<li>Tap the "+" button at the bottom left</li>
<li>Tap "Add Feed URL"</li>
<li>Paste the Link you copied above</li>
<li>Tap the back button (or use the back gesture)</li>
</div>
</span>
<script>
var helpSpan = document.getElementById("helpDetail");
helpSpan.style.display = "none";
function toggleHelp() {
if (helpSpan.style.display=="block")
helpSpan.style.display = "none";
else
helpSpan.style.display = "block";
}
</script>