Compare commits
No commits in common. "main" and "feature/ace-editor" have entirely different histories.
main
...
feature/ac
@ -1 +1 @@
|
|||||||
Subproject commit afa572390de862d4bb1cf7ca0c0d4ecf2373ced9
|
Subproject commit 1485dd78f5e744ef36e946e5ae44838e3906f9d8
|
6
local-server.sh
Executable file
6
local-server.sh
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
SCRIPT_DIR=$(cd $(dirname $0); pwd)
|
||||||
|
pushd ./public
|
||||||
|
python -m http.server 8000
|
||||||
|
popd
|
File diff suppressed because it is too large
Load Diff
@ -8,12 +8,6 @@ html, body {
|
|||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
height: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
overscroll-behavior: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6, p {
|
h1, h2, h3, h4, h5, h6, p {
|
||||||
@ -40,13 +34,9 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
position: fixed;
|
padding: 10px 0 ;
|
||||||
z-index: 1000;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,70 +46,84 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#container {
|
#container {
|
||||||
position: absolute;
|
min-height: 100%;
|
||||||
width: 100%;
|
height: auto !important;
|
||||||
|
height: 100%;
|
||||||
|
width: 1100px;
|
||||||
|
padding: 20px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
overflow: hidden;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#editor-wrapper {
|
#container .section {
|
||||||
border-right: 10px solid #eee;
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#preview-wrapper {
|
#content .mode {
|
||||||
padding-left: 10px;
|
border: 1px solid #ddd;
|
||||||
|
border-radius: 3px;
|
||||||
|
width: 535px;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
.column {
|
#content .mode .content {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#preview {
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#leftColumn {
|
||||||
|
float: left;
|
||||||
|
width: 700px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rightColumn {
|
||||||
|
width: 240px;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea#markdown {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
white-space: nowrap;
|
width: 100%;
|
||||||
display: inline-block;
|
height: 400px;
|
||||||
width: 50%;
|
overflow: auto;
|
||||||
vertical-align: top;
|
font-size: 15px;
|
||||||
overflow-y: scroll;
|
border: none;
|
||||||
|
/* border: 2px solid #D1D1BC;*/
|
||||||
|
resize: vertical;
|
||||||
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#preview.column {
|
#editor {
|
||||||
white-space: normal;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
padding: 5px;
|
clear: both;
|
||||||
z-index: 1001;
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
background-color: #444;
|
background-color: #444;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer #copyright {
|
#footer #copyright {
|
||||||
|
font-size: 12px;
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
#copyright img {
|
|
||||||
width: 16px;
|
|
||||||
display: block;
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer #copyright a {
|
#footer #copyright a {
|
||||||
display: block;
|
font-size: 12px;
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
font-size:0;
|
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
#footer #copyright a:hover {
|
#footer #copyright a:hover {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: underline;
|
||||||
}
|
}
|
@ -1,19 +1,22 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||||
|
<meta http-equiv="content-language" content="en">
|
||||||
|
<meta http-equiv="content-script-type" content="text/javascript">
|
||||||
|
<meta http-equiv="content-style-type" content="text/css">
|
||||||
<meta name="description" content="This is the online markdown editor with live preview.">
|
<meta name="description" content="This is the online markdown editor with live preview.">
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="css/style.css">
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||||
<link rel="stylesheet" type="text/css" href="css/github-markdown.css">
|
<link rel="stylesheet" type="text/css" href="css/github-markdown.css">
|
||||||
<link rel="icon" type="image/png" href="favicon.png">
|
<link rel="icon" type="image/png" href="favicon.png">
|
||||||
|
|
||||||
<script src="js/jquery-1.6.1.min.js"></script>
|
<script type="text/javascript" src="js/jquery-1.6.1.min.js"></script>
|
||||||
<script src="js/jquery.autosize-min.js"></script>
|
<script type="text/javascript" src="js/jquery.autosize-min.js"></script>
|
||||||
<script src="js/marked.min.js"></script>
|
<script type="text/javascript" src="js/marked.min.js"></script>
|
||||||
<script src="js/purify.min.js"></script>
|
<script type="text/javascript" src="js/purify.min.js"></script>
|
||||||
<script src="js/ace/ace.js"></script>
|
<script type="text/javascript" src="js/ace/ace.js"></script>
|
||||||
<script src="js/main.js"></script>
|
<script type="text/javascript" src="js/main.js"></script>
|
||||||
|
|
||||||
<title>Markdown Live Preview</title>
|
<title>Markdown Live Preview</title>
|
||||||
</head>
|
</head>
|
||||||
@ -24,9 +27,11 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="container">
|
<div id="container">
|
||||||
|
<div id="content" class="section">
|
||||||
|
|
||||||
|
<div id="edit" class="mode">
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
<div id="edit" class="column">
|
|
||||||
<div id="editor-wrapper">
|
|
||||||
<div id="editor"># Markdown syntax guide
|
<div id="editor"># Markdown syntax guide
|
||||||
|
|
||||||
## Headers
|
## Headers
|
||||||
@ -95,18 +100,31 @@ alert(message);
|
|||||||
|
|
||||||
This web site is using `markedjs/marked`.</div>
|
This web site is using `markedjs/marked`.</div>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- Do not insert new line here --><div id="preview" class="column">
|
</div>
|
||||||
<div id="preview-wrapper">
|
|
||||||
|
<div id="preview" class="mode">
|
||||||
<div id="output" class="content markdown-body">
|
<div id="output" class="content markdown-body">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<div id="copyright"><a href="https://git.a2s.su/iiiypuk/markdown-live-preview">
|
<div id="copyright"><a href="https://github.com/tanabe/markdown-live-preview"><img src="image/GitHub-Mark-Light-32px.png"></a></div>
|
||||||
<img src="image/GitHub-Mark-Light-32px.png" alt="GitHub Logo"></a>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
var _gaq = _gaq || [];
|
||||||
|
_gaq.push(['_setAccount', 'UA-73660-14']);
|
||||||
|
_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>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,35 +1,20 @@
|
|||||||
$(function() {
|
$(function() {
|
||||||
let isEdited = false;
|
var isEdited = false;
|
||||||
|
|
||||||
let adjustScreen = () => {
|
|
||||||
let screenHeight = $(window).height();
|
|
||||||
let headerHeight = $('#header').outerHeight();
|
|
||||||
let footerHeight = $('#footer').outerHeight();
|
|
||||||
let containerHeight = screenHeight - headerHeight - footerHeight;
|
|
||||||
$('#container').css({ top: `${headerHeight}px` });
|
|
||||||
$('.column').css({ height: `${containerHeight}px`});
|
|
||||||
};
|
|
||||||
|
|
||||||
$(window).resize(() => {
|
|
||||||
adjustScreen();
|
|
||||||
});
|
|
||||||
|
|
||||||
// Setup editor
|
// Setup editor
|
||||||
let editor = ace.edit('editor');
|
var editor = ace.edit('editor');
|
||||||
editor.getSession().setUseWrapMode(true);
|
editor.getSession().setUseWrapMode(true);
|
||||||
editor.renderer.setScrollMargin(10, 10, 10, 10);
|
|
||||||
editor.setOptions({
|
editor.setOptions({
|
||||||
maxLines: Infinity,
|
maxLines: Infinity,
|
||||||
indentedSoftWrap: false,
|
indentedSoftWrap: false,
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
autoScrollEditorIntoView: true,
|
|
||||||
theme: 'ace/theme/github',
|
theme: 'ace/theme/github',
|
||||||
// TODO consider some options
|
// TODO consider some options
|
||||||
});
|
});
|
||||||
|
|
||||||
editor.on('change', () => {
|
editor.on('change', () => {
|
||||||
isEdited = true;
|
isEdited = true;
|
||||||
convert();
|
convert();
|
||||||
adjustScreen();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
let convert = () => {
|
let convert = () => {
|
||||||
@ -46,5 +31,4 @@ $(function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
convert();
|
convert();
|
||||||
adjustScreen();
|
|
||||||
});
|
});
|
@ -1,8 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
SCRIPT_DIR=$(cd $(dirname $0); pwd)
|
|
||||||
|
|
||||||
cd ${SCRIPT_DIR}/..
|
|
||||||
|
|
||||||
firebase deploy
|
|
@ -1,7 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
SCRIPT_DIR=$(cd $(dirname $0); pwd)
|
|
||||||
|
|
||||||
cd ${SCRIPT_DIR}/../public
|
|
||||||
python -m http.server 8000
|
|
Loading…
Reference in New Issue
Block a user