-
Notifications
You must be signed in to change notification settings - Fork 3
/
r-edit.html
26 lines (26 loc) · 1.22 KB
/
r-edit.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
<!DOCTYPE html>
<!--
@desc an easy way to sort and deduplicate subreddits for creating a multireddit list
-->
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>rEdit</title>
<link rel="stylesheet" type="text/css" href="css/basic-multibox.css" />
<link rel="stylesheet" type="text/css" href="css/r-edit.css" />
</head>
<body class="multibox">
<div class="row">
<div class="box">
<textarea id="lined" placeholder="Put the subreddit names here, separated by anything that ISN'T a letter, number, or underscore ('_')"></textarea>
<span id="subcount" class="corner top"></span>
<a id="quickeditlink" class="corner bottom" title="This is a bookmarklet to quickly go from a multireddit page to an rEdit editor preloaded with the subreddits you were viewing." href="javascript:void location.assign(`https://gh.princessrtfm.com/r-edit.html#${location.pathname}`)">quick rEdit</a>
</div>
<div class="box">
<textarea id="collapsed" placeholder="This box will give you the multireddit collection"></textarea>
<a id="multireddit" class="corner bottom" href="">multireddit</a>
</div>
</div>
<script type="text/javascript" src="js/r-edit.browser.js"></script>
</body>
</html>