Stackedit/public/index.html

340 lines
11 KiB
HTML
Raw Normal View History

2014-08-25 08:18:14 +00:00
<!DOCTYPE html>
<html>
<head>
<title>StackEdit In-browser markdown editor</title>
<link rel="canonical" href="https://stackedit.io/">
<link rel="icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
<link rel="shortcut icon" href="res-min/img/stackedit-32.ico" type="image/x-icon">
2014-08-25 18:25:21 +00:00
<meta name="description"
content="Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.">
2014-08-25 08:18:14 +00:00
<meta name="author" content="Benoit Schweblin">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<meta name="msvalidate.01" content="5E47EE6F67B069C17E3CDD418351A612">
<link rel="stylesheet" href="res-min/themes/default.css">
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<style>
body {
font-size: 18px;
font-weight: 300;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.navbar {
position: fixed;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.content {
position: absolute;
width: 100%;
height: 100%;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.slide {
position: relative;
width: 100%;
height: 100%;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.footer {
position: absolute;
top: inherit;
bottom: 0;
height: 50px;
width: 100%;
padding: 5px
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.slide, .footer, h1 {
text-align: center;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.footer .btn {
font-size: 28px;
padding: 0 11px;
line-height: 1;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.btn-info {
color: #777;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.centered {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.logo {
2014-08-25 18:25:21 +00:00
height: 160px;
2014-08-25 08:18:14 +00:00
width: 600px;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.logo .subtitle {
position: absolute;
text-align: right;
color: #888;
2014-08-25 18:25:21 +00:00
top: 105px;
2014-08-25 08:18:14 +00:00
right: 10px;
font-size: 22px;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.logo a {
color: #555;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.logo i::before {
2014-08-25 18:25:21 +00:00
margin-right: 8px;
margin-left: 0;
2014-08-25 08:18:14 +00:00
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.transition {
-webkit-transition: all ease-in-out 1.5s;
transition: all ease-out 1.5s;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.transparent {
opacity: 0;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.scale {
-webkit-transform: scale(1.03);
-ms-transform: scale(1.03);
transform: scale(1.03);
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.navbar .nav {
float: none;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.navbar .btn {
font-size: 18px;
line-height: 1.25;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
img.modal-content {
2014-08-25 18:25:21 +00:00
margin: 70px auto;
2014-08-25 08:18:14 +00:00
display: block;
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
.social {
font-size: 26px;
2014-08-25 18:25:21 +00:00
margin-right: 20px;
}
.container {
margin-bottom: 40px;
}
.dark {
background-color: #aeaeae;
}
.inset-shadow {
-webkit-box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.2);
box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.2);
}
.menu-img {
background-image: url(res/img/menu.png);
background-size: auto 240px;
background-repeat: no-repeat;
background-position: 30%;
height: 240px;
2014-08-25 08:18:14 +00:00
}
</style>
<script>
$(function() {
2014-08-25 18:25:21 +00:00
function scrollTo(elt) {
2014-08-25 08:18:14 +00:00
return function() {
$('html,body').animate({scrollTop: elt.offset().top}, 500);
};
}
2014-08-25 18:25:21 +00:00
2014-08-25 08:18:14 +00:00
$('#scrollToSlide2').click(scrollTo($('#slide2')));
setTimeout(function() {
$('.logo').removeClass('transparent scale');
}, 500);
setTimeout(function() {
$('.logo .transparent, .navbar-inner .transparent, .footer .transparent').removeClass('transparent scale');
}, 1500);
})
</script>
</head>
<body>
<div class="content">
2014-08-25 18:25:21 +00:00
<div class="slide modal-body" id="slide1">
<nav class="navbar navbar-default">
<div class="navbar-inner">
<div class="nav transition transparent">
<a class="btn btn-success" href="editor" title="Editor"><i class="icon-pencil"></i> Start writing
now!</a>
</div>
2014-08-25 08:18:14 +00:00
</div>
2014-08-25 18:25:21 +00:00
</nav>
<div class="centered logo transition transparent scale">
<img src="res/img/logo.svg"/>
<div class="subtitle transition transparent scale">
In-browser markdown editor<br>
<div class="social">
<a href=""><i class="icon-twitter"></i></a>
<a href=""><i class="icon-github-circled"></i></a>
<a href=""><img height="25" src="https://cdn.monetizejs.com/resources/button.svg"></a>
</div>
2014-08-25 08:18:14 +00:00
</div>
</div>
2014-08-25 18:25:21 +00:00
<div class="footer preview-panel modal-footer">
<div class="transition transparent">
<a class="btn btn-info" id="scrollToSlide2"><i class="icon-angle-down"></i></a>
</div>
2014-08-25 08:18:14 +00:00
</div>
</div>
2014-08-25 18:25:21 +00:00
<div id="slide2" class="modal-header">
<div class="container">
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h1 id="unrivalled-writing-experience">Unrivalled writing experience.</h1>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<div class="row">
<div class="col-md-7">
<img class="modal-content" width="600" src="res/img/syntax-highlighting.gif">
</div>
<div class="col-md-4 col-md-offset-1">
<h2 id="rich-markdown-editor">Rich editor</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdits markdown syntax highlighting is unique. The refined text formatting of the editor helps you
visualize the final rendering of your documents.</p>
<br>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="wysiwyg-control-buttons">WYSIWYG controls</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdit provides very handy formatting buttons and shortcuts, thanks to PageDown, the
WYSIWYG-style markdown editor used by Stack Overflow.</p>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h2 id="live-preview-with-scroll-sync" class="text-center">Live preview with Scroll Sync</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdits Scroll Sync extension binds accurately the scrollbars of the preview panel and the
editor panel to ensure that you always keep an eye on the output while writing.</p>
</div>
</div>
<img class="modal-content" width="600" src="res/img/live-preview.png">
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<div class="row">
<div class="col-md-4 col-md-offset-1">
<h2 id="built-in-spell-checker">Built-in spell-checker</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdit uses browsers built-in spell-checker to perform efficient, multi-language
spell-checking and correction suggestions.</p>
</div>
<div class="col-md-4 col-md-offset-2">
<h2 id="fully-customizable">Fully customizable</h2>
<p>StackEdit has an infinite combinations of settings. Theme, layout, shortcuts can be
personalized. For the rest, StackEdit lets you create your own extension…</p>
</div>
</div>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
2014-08-25 08:18:14 +00:00
</div>
</div>
2014-08-25 18:25:21 +00:00
<div class="dark inset-shadow menu-img">
</div>
<div id="slide4" class="modal-footer modal-header">
<div class="container">
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h1 id="designed-for-web-writing">Designed for web writers.</h1>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="simultaneous-collaboration">Simultaneous collaboration</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>Documents in StackEdit can be synchronized and shared through Google Drive and Dropbox. When two
collaborators are working on the same document at the same time, StackEdit takes care of merging the
modifications.</p>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="review-comments">Review comments</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdit allows you to insert inline comments and embed collaborator discussions in your documents, much
like Microsoft Word or Google Docs.</p>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="publish-straight-to-your-blog">Publish straight to your blog</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdit can upload your documents directly to Blogger, GitHub, Tumblr, WordPress… You can choose
whether to upload in markdown format, HTML, or to format the output using Underscore template
engine.</p>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="write-offline">Write offline</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>Even when you travel, StackEdit is still accessible and lets you write in offline just like any
desktop application. Now you have no excuse!</p>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
</div>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<img class="background-img" width="500" src="res/img/toc.gif">
</div>
</div>
</div>
<div id="slide5" class="modal-footer modal-header">
<div class="container">
<h1 id="extended-markdown-support">Extended markdown support</h1>
<div class="row">
<div class="col-md-4 col-md-offset-4">
<hr>
</div>
</div>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="github-flavored-markdown">GitHub Flavored Markdown</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdit supports different markdown flavors such as Markdown Extra and GitHub flavored Markdown. Each
markdown feature can be enabled or disabled at your convenience.</p>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="latex-mathematical-expressions">LaTeX mathematical expressions</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdit integrates MathJax to render mathematics from LaTeX expressions inside your markdown document,
as you would do on Stack Exchange.</p>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<h2 id="uml-diagrams">UML diagrams</h2>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
<p>StackEdit enables you to write sequence diagrams and flow charts using a simple text syntax.</p>
2014-08-25 08:18:14 +00:00
2014-08-25 18:25:21 +00:00
</div>
2014-08-25 08:18:14 +00:00
</div>
</div>
</body>
</html>