Age | Commit message (Collapse) | Author |
|
into dev
|
|
|
|
|
|
|
|
Switching a `display: block` element to `display: inline-block` allows calculating the bounds based on the contents of the div rather than the entire container (which is often `width: 100%`).
This provides a much more natural zoom, especially for paragraphs and code examples.
|
|
|
|
|
|
|
|
|
|
Fix query parameter issue in notes plugin.
|
|
Closes #1392.
|
|
|
|
into dev
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
marked.setOptions(highlight)
|
|
|
|
Fixed #1379 - config keyboard now disables 's' key
|
|
|
|
|
|
|
|
|
|
In html content, marked allow `Inline-Level Grammar` but not `Block-Level Grammar`, so when I write following:
```
note:
* a
* b
* c
```
it become:
```html
<p><em> a
</em> b</p>
<ul>
<li>c</li>
</ul>
```
unbelievable!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Allow tex parsing in <code> tags
|
|
|
|
Updated to Highlightjs 8.6 with all languages supported.
|
|
|
|
|
|
|
|
Just using $ as delimiter in markdown document fails since the markdown
parser unknown to the dollar syntax will try to interpret underscores.
Putting the $ delimented formula in backticks will cause the markdown
parser to put the tex-code with the $ delimiters into a code block.
The texcode will then be unchanged. This patch allows for mathJax to
interpret and automagically display the tex-formulas.
|
|
|
|
by changing the tag before html is parsed and restoring it before markdown parsing
|
|
|
|
|
|
update marked to 0.3.3
|
|
|
|
|
|
Compressed with `uglifyjs lib/marked.js --comments="/Copyright/" --mangle --compress`
Used Marked v0.3.3 as of chjj/marked@2b5802f258c5e23e48366f2377fbb4c807f47658
|
|
see https://github.com/hakimel/reveal.js/issues/929#issuecomment-80738837
|
|
It would be nice if we could define a custom notes.html file.
Actually, I'm used to compile my js files before releasing my app and, using selectors like `script[src$="notes.js"]`, doesn't work :(
So, what do you think about it?
|
|
content in example.html does not work #682
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
support for file protocol
|
|
|
|
|
|
|
|
Indentation issue when using code in a markdown slide
|
|
|
|
|
|
|
|
autoCenter is of, the tipPosition was in the wrong scope
|
|
|
|
data-separator-vertical, data-notes -> data-separator-notes
|
|
|
|
|
|
- on slides: .slide x=y
- on elements: .element x=y
Those are detected in html comment, in order to not be visible
if a markdown is edited in an html editor.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
into dev
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|