chore: optimize workflows to avoid building components each time
This commit is contained in:
518
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.css
vendored
Normal file
518
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.css
vendored
Normal file
@@ -0,0 +1,518 @@
|
||||
html {
|
||||
font-size: var(--sn-stylekit-base-font-size);
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: var(--sn-stylekit-font-size-editor);
|
||||
font-family: Calibri, "Trebuchet MS", sans-serif;
|
||||
}
|
||||
|
||||
* {
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
.full-height,
|
||||
.ldt label,
|
||||
body,
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ldt,
|
||||
.ldt label.ldt-label {
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.ldt pre,
|
||||
.ldt textarea {
|
||||
font-size: var(--sn-stylekit-font-size-editor);
|
||||
font-family: monospace;
|
||||
color: var(--sn-stylekit-editor-foreground-color);
|
||||
}
|
||||
|
||||
.ldt {
|
||||
overflow: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
pre.ldt-pre {
|
||||
-moz-padding-start: 1px;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
-webkit-nbsp-mode: space;
|
||||
}
|
||||
|
||||
@supports (-webkit-overflow-scrolling: touch) {
|
||||
/* CSS specific to iOS devices */
|
||||
.ldt pre {
|
||||
margin-left: 3px !important;
|
||||
}
|
||||
}
|
||||
body,
|
||||
hr {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.container,
|
||||
.copyright,
|
||||
.demo-control,
|
||||
.open-control {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.ldt label {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
display: inline;
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
body,
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hljs,
|
||||
.ldt textarea,
|
||||
hr {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ldt textarea {
|
||||
font-size: var(--sn-stylekit-editor-foreground-color);
|
||||
color: transparent !important;
|
||||
color: rgba(0, 0, 0, 0.3) !important;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
background: 0 0;
|
||||
outline: 0;
|
||||
resize: none;
|
||||
min-width: 100%;
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
overflow: hidden;
|
||||
filter: alpha(opacity=30);
|
||||
}
|
||||
|
||||
.hljs {
|
||||
overflow-x: auto;
|
||||
color: #657b83;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #93a1a1;
|
||||
}
|
||||
|
||||
.hljs-addition,
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag {
|
||||
color: #859900;
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-literal,
|
||||
.hljs-meta .hljs-meta-string,
|
||||
.hljs-number,
|
||||
.hljs-regexp,
|
||||
.hljs-string {
|
||||
color: #2aa198;
|
||||
}
|
||||
|
||||
.hljs-name,
|
||||
.hljs-section,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-id,
|
||||
.hljs-title {
|
||||
color: #268bd2;
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-attribute,
|
||||
.hljs-class .hljs-title,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-variable {
|
||||
color: #b58900;
|
||||
}
|
||||
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-meta .hljs-keyword,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-subst,
|
||||
.hljs-symbol {
|
||||
color: #cb4b16;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-deletion {
|
||||
color: #dc322f;
|
||||
}
|
||||
|
||||
.hljs-formula {
|
||||
background: #eee8d5;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
@viewport {
|
||||
width: device-width;
|
||||
}
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
* {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
min-width: 320px;
|
||||
margin: 0;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
button,
|
||||
textarea {
|
||||
font: var(--sn-stylekit-font-size-editor) Calibri, "Trebuchet MS", sans-serif;
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
vertical-align: baseline;
|
||||
top: -0.4em;
|
||||
}
|
||||
|
||||
sub {
|
||||
top: 0.4em;
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 1px;
|
||||
border: 0;
|
||||
border-top: 1px solid #ccc;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
font: var(--sn-stylekit-font-size-editor) Cambria, Georgia, serif;
|
||||
margin: 1em 0 0;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.ldt .bold,
|
||||
.ldt .latexBlock.delimeter,
|
||||
.ldt .list-mark {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0.5em 0 0.25em;
|
||||
font-size: 225%;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 1em 0 0.25em;
|
||||
font-size: 175%;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 125%;
|
||||
}
|
||||
|
||||
div.header {
|
||||
background: var(--sn-stylekit-contrast-background-color);
|
||||
color: var(--sn-stylekit-contrast-foreground-color);
|
||||
border-bottom: 1px solid var(--sn-stylekit-contrast-border-color);
|
||||
padding: 0 16px;
|
||||
margin: 0;
|
||||
height: 48px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
.header-item {
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.header a.link {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-bottom: thin solid rgba(255, 255, 255, 0.7);
|
||||
height: 16px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.demo-control,
|
||||
.open-control {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.demo-control .control-item,
|
||||
.header .toolbar-button {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
color: #fff;
|
||||
background-clip: padding-box;
|
||||
border-color: transparent;
|
||||
border-style: solid;
|
||||
border-width: 9px 1px;
|
||||
height: 48px;
|
||||
min-width: 30px;
|
||||
line-height: 30px;
|
||||
padding: 0 4px;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
|
||||
.demo-control .control-item {
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.demo-control .control-input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.demo-control .control-input:checked + .control-item {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
@media screen and (min-width: 825px) {
|
||||
.demo-control {
|
||||
text-align: left;
|
||||
padding-left: 16px;
|
||||
}
|
||||
.open-control {
|
||||
text-align: right;
|
||||
padding-right: 20px;
|
||||
}
|
||||
}
|
||||
.container {
|
||||
padding-top: 48px;
|
||||
overflow: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.half-width,
|
||||
.slider {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.half-width {
|
||||
position: relative;
|
||||
width: 50%;
|
||||
width: calc(50% - 3px);
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.slider {
|
||||
width: 6px;
|
||||
cursor: ew-resize;
|
||||
background: radial-gradient(rgba(0, 0, 0, 0.1) 21%, transparent 22%) 3px 3px, radial-gradient(rgba(0, 0, 0, 0.1) 21%, transparent 22%);
|
||||
background-size: 6px 6px;
|
||||
left: 0 !important;
|
||||
top: 0 !important;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
.opt__strict .not-strict {
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.ldt label.ldt-label,
|
||||
.source {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ldt pre,
|
||||
.ldt textarea,
|
||||
textarea.source {
|
||||
padding: 16px 16px 0;
|
||||
}
|
||||
|
||||
.ldt pre.ldt-pre,
|
||||
.ldt textarea {
|
||||
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
||||
font-size: var(--sn-stylekit-font-size-editor);
|
||||
line-height: calc(var(--sn-stylekit-font-size-editor) + 0.2rem);
|
||||
}
|
||||
|
||||
pre.ldt-pre span {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
textarea.source {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: none;
|
||||
display: block;
|
||||
outline: 0;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.result-html .svg-preview,
|
||||
.result-html img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.result-html,
|
||||
.result-src {
|
||||
display: none;
|
||||
padding: 16px 16px 16px 13px;
|
||||
margin: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.result-src,
|
||||
.result-src-content {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.result-as-debug .result-src,
|
||||
.result-as-habr .result-src,
|
||||
.result-as-html .result-html,
|
||||
.result-as-htmltex .result-src,
|
||||
.result-as-md .result-src,
|
||||
.result-as-src .result-src {
|
||||
display: block;
|
||||
color: var(--sn-stylekit-editor-foreground-color);
|
||||
}
|
||||
|
||||
.result-html {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.result-html a {
|
||||
color: var(--sn-stylekit-info-color);
|
||||
}
|
||||
|
||||
.result-html .svg-preview {
|
||||
overflow: visible;
|
||||
-webkit-transition: opacity 0.4s ease-in-out;
|
||||
-moz-transition: opacity 0.4s ease-in-out;
|
||||
transition: opacity 0.4s ease-in-out;
|
||||
fill: var(--sn-stylekit-info-color);
|
||||
}
|
||||
|
||||
.hljs {
|
||||
background: 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
background: #e5cda5;
|
||||
}
|
||||
|
||||
.ldt .header, .ldt .header2 {
|
||||
font-weight: 700;
|
||||
color: var(--sn-stylekit-info-color);
|
||||
}
|
||||
|
||||
.ldt .quote {
|
||||
background: var(--sn-stylekit-secondary-contrast-background-color);
|
||||
}
|
||||
|
||||
.ldt .list {
|
||||
background: var(--sn-stylekit-secondary-contrast-background-color);
|
||||
}
|
||||
|
||||
.ldt .code, .ldt .fence {
|
||||
background: var(--sn-stylekit-secondary-contrast-background-color);
|
||||
}
|
||||
|
||||
.ldt .sub, .ldt .sup {
|
||||
color: var(--sn-stylekit-warning-color);
|
||||
}
|
||||
|
||||
.ldt .link {
|
||||
color: var(--sn-stylekit-info-color);
|
||||
}
|
||||
|
||||
.ldt .latex {
|
||||
color: var(--sn-stylekit-success-color);
|
||||
}
|
||||
|
||||
.ldt .italic {
|
||||
color: var(--sn-stylekit-warning-color);
|
||||
}
|
||||
|
||||
.ldt .strike {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.ldt .latexBlock.keyword {
|
||||
color: var(--sn-stylekit-info-color);
|
||||
}
|
||||
|
||||
.ldt .latexBlock.keyword2 {
|
||||
color: var(--sn-stylekit-info-color);
|
||||
}
|
||||
|
||||
.ldt .latexBlock.keyword3 {
|
||||
color: var(--sn-stylekit-success-color);
|
||||
}
|
||||
|
||||
.ldt .latexBlock.bracket {
|
||||
color: var(--sn-stylekit-danger-color);
|
||||
}
|
||||
|
||||
.ldt .latexBlock.comment {
|
||||
color: var(--sn-stylekit-neutral-color-color);
|
||||
}
|
||||
|
||||
.ldt .latexBlock.index {
|
||||
color: var(--sn-stylekit-warning-color);
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio: 0) {
|
||||
.ldt textarea::-webkit-input-placeholder {
|
||||
text-shadow: none;
|
||||
-webkit-text-fill-color: initial;
|
||||
}
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=app.css.map */
|
||||
1
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.css.map
vendored
Normal file
1
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.css.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sourceRoot":"","sources":["../src/main.scss"],"names":[],"mappings":"AAAA;EACE;;;AAGF;EACE;EACA;;;AAGF;EAEE;;;AAGF;AAAA;AAAA;AAAA;EAII;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;EAEE;EACA;EACA;;;AAIF;EACI;EACA;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;AACE;EACA;IACE;;;AAIJ;AAAA;EAEI;;;AAGJ;AAAA;AAAA;AAAA;EAII;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;AAAA;EAGI;;;AAGJ;AAAA;AAAA;EAGI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;AAAA;EAGI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;EAKI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAGJ;AAAA;EAEI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;AAAA;AAAA;EAGI;EACA;EACA;;;AAGJ;AAAA;AAAA;EAGI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;IACI;IACA;;EAEJ;IACI;IACA;;;AAIR;EACI;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;AAAA;EAGI;;;AAGJ;AAAA;EAEI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;EAMI;EACA;;;AAGJ;EACI;EACA;;AAEA;EACE;;;AAIN;EACI;EACA;EACA;EACA;EAEA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACE;;;AAGF;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACE;;;AAIF;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EAII;IACI;IACA","file":"app.css"}
|
||||
87
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.js
vendored
Normal file
87
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.js
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
document.addEventListener('DOMContentLoaded', function (event) {
|
||||
const editor = document.getElementById('editor-source')
|
||||
|
||||
let workingNote
|
||||
|
||||
const componentRelay = new ComponentRelay({
|
||||
targetWindow: window,
|
||||
onReady: () => {
|
||||
const platform = componentRelay.platform
|
||||
if (platform) {
|
||||
document.body.classList.add(platform)
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
componentRelay.streamContextItem((note) => {
|
||||
workingNote = note
|
||||
|
||||
// Only update UI on non-metadata updates.
|
||||
if (note.isMetadataUpdate) {
|
||||
return
|
||||
}
|
||||
|
||||
editor.value = note.content.text
|
||||
window.upmath.updateText()
|
||||
|
||||
editor.setAttribute('spellcheck', JSON.stringify(workingNote.content.spellcheck))
|
||||
})
|
||||
|
||||
editor.addEventListener('input', function (event) {
|
||||
const text = editor.value || ''
|
||||
|
||||
function strip(html) {
|
||||
const tmp = document.implementation.createHTMLDocument('New').body
|
||||
tmp.innerHTML = html
|
||||
return tmp.textContent || tmp.innerText || ''
|
||||
}
|
||||
|
||||
function truncateString(string, limit = 90) {
|
||||
if (string.length <= limit) {
|
||||
return string
|
||||
} else {
|
||||
return string.substring(0, limit) + '...'
|
||||
}
|
||||
}
|
||||
|
||||
if (workingNote) {
|
||||
// Be sure to capture this object as a variable, as workingNote may be reassigned in `streamContextItem`, so by the time
|
||||
// you modify it in the presave block, it may not be the same object anymore, so the presave values will not be applied to
|
||||
// the right object, and it will save incorrectly.
|
||||
const note = workingNote
|
||||
|
||||
componentRelay.saveItemWithPresave(note, () => {
|
||||
window.upmath.updateText()
|
||||
|
||||
const html = window.upmath.getHTML()
|
||||
const strippedHtml = truncateString(strip(html))
|
||||
|
||||
note.content.preview_plain = strippedHtml
|
||||
note.content.preview_html = null
|
||||
note.content.text = text
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
// Tab handler
|
||||
editor.addEventListener('keydown', function (event) {
|
||||
if (!event.shiftKey && event.which == 9) {
|
||||
event.preventDefault()
|
||||
|
||||
// Using document.execCommand gives us undo support
|
||||
if (!document.execCommand('insertText', false, '\t')) {
|
||||
// document.execCommand works great on Chrome/Safari but not Firefox
|
||||
const start = this.selectionStart
|
||||
const end = this.selectionEnd
|
||||
const spaces = ' '
|
||||
|
||||
// Insert 4 spaces
|
||||
this.value = this.value.substring(0, start) + spaces + this.value.substring(end)
|
||||
|
||||
// Place cursor 4 spaces away from where
|
||||
// the tab key was pressed
|
||||
this.selectionStart = this.selectionEnd = start + 4
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
1
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.js.map
vendored
Normal file
1
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/app.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
521
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/dist.css
vendored
Normal file
521
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/dist.css
vendored
Normal file
File diff suppressed because one or more lines are too long
7563
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/dist.js
vendored
Normal file
7563
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/dist.js
vendored
Normal file
File diff suppressed because one or more lines are too long
7485
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/lib.js
vendored
Normal file
7485
packages/components/dist/org.standardnotes.fancy-markdown-editor/dist/lib.js
vendored
Normal file
File diff suppressed because one or more lines are too long
52
packages/components/dist/org.standardnotes.fancy-markdown-editor/index.html
vendored
Normal file
52
packages/components/dist/org.standardnotes.fancy-markdown-editor/index.html
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<base target="_blank">
|
||||
<meta charset="UTF-8">
|
||||
<title>Markdown Math</title>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="dist/dist.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="header-item open-control">
|
||||
<input type="file" id="fileElem" style="display:none">
|
||||
<button class="toolbar-button _upload-source" title="Upload a file">⇑</button>
|
||||
<button class="toolbar-button _download-source" title="Download source">⇓</button>
|
||||
</div>
|
||||
<div class="header-item demo-control">
|
||||
<input class="control-input" id="id_html" type="radio" name="source_type" checked="checked"><label
|
||||
class="control-item" for="id_html" title="Example of rendered HTML" data-result-as="html">preview</label>
|
||||
<input class="control-input" id="id_src" type="radio" name="source_type"><label class="control-item" for="id_src"
|
||||
title="HTML with rendered equations" data-result-as="src">html</label>
|
||||
<input class="control-input" id="id_htmltex" type="radio" name="source_type"><label class="control-item"
|
||||
for="id_htmltex" title="HTML with raw LaTeX equations" data-result-as="htmltex">html-tex</label>
|
||||
<input class="control-input" id="id_md" type="radio" name="source_type"><label class="control-item" for="id_md"
|
||||
title="Markdown with rendered equations" data-result-as="md">md</label>
|
||||
<button class="toolbar-button _download-result" title="Download result">⇓</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container full-height" id="container-block">
|
||||
<!--
|
||||
-->
|
||||
<div class="half-width full-height source-wrap" id="source-block"><textarea id="editor-source"
|
||||
class="source full-height"></textarea></div>
|
||||
<!--
|
||||
-->
|
||||
<div class="slider full-height" id="slider"></div>
|
||||
<!--
|
||||
-->
|
||||
<div class="half-width full-height" id="result-block">
|
||||
<div class="result-html full-height"></div>
|
||||
<pre class="result-src full-height"><code class="result-src-content"></code></pre>
|
||||
</div>
|
||||
<!--
|
||||
-->
|
||||
</div>
|
||||
<script src="dist/dist.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Binary file not shown.
36
packages/components/dist/org.standardnotes.fancy-markdown-editor/package.json
vendored
Normal file
36
packages/components/dist/org.standardnotes.fancy-markdown-editor/package.json
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "@standardnotes/markdown-math",
|
||||
"private": true,
|
||||
"version": "1.3.6",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"compile": "grunt"
|
||||
},
|
||||
"author": "Standard Notes",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.7.7",
|
||||
"@babel/core": "^7.7.7",
|
||||
"@babel/preset-env": "^7.7.7",
|
||||
"@standardnotes/component-relay": "2.2.0",
|
||||
"draggabilly": "^2.2.0",
|
||||
"grunt": "^1.0.4",
|
||||
"grunt-babel": "^8.0.0",
|
||||
"grunt-browserify": "^5.3.0",
|
||||
"grunt-contrib-concat": "^1.0.1",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-sass": "^1.0.0",
|
||||
"grunt-contrib-uglify": "^5.0.1",
|
||||
"grunt-contrib-watch": "^1.1.0",
|
||||
"grunt-newer": "^1.3.0",
|
||||
"grunt-remove-comments": "^0.1.6",
|
||||
"katex": "^0.11.1",
|
||||
"markdown-it": "^10.0.0",
|
||||
"markdown-it-footnote": "^3.0.2",
|
||||
"markdown-it-sub": "^1.0.0",
|
||||
"markdown-it-sup": "^1.0.0",
|
||||
"markdown-it-task-lists": "^2.1.1",
|
||||
"sass": "*",
|
||||
"sn-stylekit": "2.0.20"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user