-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
495 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name": "Export to Markdown", "short_name": "ExportToMarkdown", "description": "This is utilized to export the story in Medium to a markdown format file.", "version": "0.1.7", "icons": {"16": "icons/medium-16.png", "48": "icons/medium-48.png", "64": "icons/medium-64.png", "128": "icons/medium.png"}, "permissions": ["tabs", "https://*/*"], "browser_action": {"default_title": "Export to Markdown", "default_icon": "icons/medium.png", "default_popup": "popup.html"}, "manifest_version": 2, "homepage_url": "https://github.com/neal1991/export-medium"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<style> | ||
textarea { | ||
width: 800px; | ||
height: 600px; | ||
} | ||
|
||
.history-list { | ||
font-size: 18px | ||
} | ||
|
||
body { | ||
width: 800px; | ||
height: 600px; | ||
} | ||
|
||
.buttons li { | ||
list-style: none; | ||
display: inline; | ||
margin-right: 5px; | ||
font-weight: bold; | ||
} | ||
|
||
h1, | ||
button { | ||
display: inline; | ||
color: gray; | ||
border-radius: 5px; | ||
font-weight: bold; | ||
filter: alpha(opacity=50) | ||
} | ||
|
||
#shadow { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
z-index: 0; | ||
width: 100%; | ||
background-color: #000; | ||
opacity: .2; | ||
filter: alpha(opacity=20); | ||
} | ||
|
||
ul img { | ||
width: 1.5rem; | ||
height: 1.5rem; | ||
position: relative; | ||
top: .4rem; | ||
} | ||
|
||
.load { | ||
width: 50px; | ||
height: 50px; | ||
position: fixed; | ||
left: 50%; | ||
top: 50%; | ||
-webkit-animation: spin1 2s infinite linear; | ||
-moz-animation: spin1 2s infinite linear; | ||
-o-animation: spin1 2s infinite linear; | ||
-ms-animation: spin1 2s infinite linear; | ||
animation: spin1 2s infinite linear; | ||
display: block; | ||
visibility: hidden; | ||
} | ||
|
||
@-webkit-keyframes spin1 { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
} | ||
100% { | ||
-webkit-transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@-moz-keyframes spin1 { | ||
0% { | ||
-moz-transform: rotate(0deg); | ||
} | ||
100% { | ||
-moz-transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@-o-keyframes spin1 { | ||
0% { | ||
-o-transform: rotate(0deg); | ||
} | ||
100% { | ||
-o-transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@-ms-keyframes spin1 { | ||
0% { | ||
-ms-transform: rotate(0deg); | ||
} | ||
100% { | ||
-ms-transform: rotate(360deg); | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="main"> | ||
<ul class="buttons"> | ||
<li><button class="copy">copy to clipboard</button></li> | ||
<li><button class="history">history</button></li> | ||
</ul> | ||
|
||
<span><img src="load.svg" class="load"></span> | ||
<div class="left-area"> | ||
<textarea id="source"></textarea> | ||
</div> | ||
<div class="right-area"></div> | ||
</div> | ||
<script src="scripts/snarkdown.js"></script> | ||
<script src="scripts/turndown.min.js"></script> | ||
<script src="scripts/widget.js"></script> | ||
</body> | ||
|
||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.