summaryrefslogtreecommitdiffhomepage
path: root/plugin/markdown/markdown.js
AgeCommit message (Collapse)Author
2019-03-04reveal.js plugin flow now uses promises, refactor markdown plugin to use ↵Hakim El Hattab
promises
2019-03-01async loading of external markdown, add Reveal.registerPlugin()Hakim El Hattab
2018-10-02Fix typoFred Rolland
2017-06-07alias 'notes:' alias for md speaker note separator #1913Hakim El Hattab
2017-01-31fix markdown typo, update comment #1780Hakim El Hattab
2017-01-31Merge branch 'patch-2' of https://github.com/ccqgithub/reveal.js into devHakim El Hattab
2016-12-23support complex markdownSeason Chen
support <textarea data-template> `some code` </textarea>
2016-12-08Enable passing options for parsing Markdown.Benjamin Tan
Closes #1163, #1495.
2016-06-22Merge branch 'bug/markdownSetOptions' of https://github.com/snowyu/reveal.js ↵Hakim El Hattab
into dev
2016-01-11Merge branch 'jetzhliu-patch-1' of https://github.com/jetzhliu/reveal.js ↵Hakim El Hattab
into dev
2016-01-08same code formatHakim El Hattab
2015-11-11* [bug] the markdown plugin can not render highlight codes for ↵Riceball LEE
marked.setOptions(highlight)
2015-11-02fixed loadingteawithfruit
2015-10-19format note content when creating slideLiu Zhanhong
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!
2015-07-07tweaks for #1200Hakim El Hattab
2015-07-07Merge branch 'master' of https://github.com/bfritscher/reveal.js into devHakim El Hattab
2015-04-12handle the </script> end bug inside code markdownBoris Fritscher
by changing the tag before html is parsed and restoring it before markdown parsing
2015-03-25Merge branch 'patch-1' of https://github.com/drzax/reveal.js into devHakim El Hattab
2015-03-16Attribute values should be quotedSimon Elvery
2015-03-16updated md slide separator regex #929Hakim El Hattab
see https://github.com/hakimel/reveal.js/issues/929#issuecomment-80738837
2015-01-22add global flag back in for whitespace removal, without it most of the ↵Hakim El Hattab
content in example.html does not work #682
2014-04-06code format tweakHakim El Hattab
2014-04-06Merge branch 'xhr-local' of https://github.com/malyw/reveal.js into devHakim El Hattab
2014-04-06Merge pull request #682 from tentacode/patch-1Hakim El Hattab
Indentation issue when using code in a markdown slide
2014-04-02Mark xhr.status=0 as successfulSergey Gospodarets
2014-04-02Mark xhr.status=0 as successfulSergey Gospodarets
2014-02-17renamed markdown attributes for clarity and consistency: data-vertical -> ↵Hakim El Hattab
data-separator-vertical, data-notes -> data-separator-notes
2013-11-30Simpler default syntax for markdown attributes.VonC
- 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.
2013-11-30Removes console.log calls.VonC
2013-11-30Fix previous element selection.VonC
2013-11-30Fix element attributes, except for multi-line.VonC
2013-11-30Remove section attribute implementation.VonC
2013-11-30First refactoringVonC
2013-11-06Add slide attributes for single slide section case.VonC
2013-11-04Remove console.log debugs, and fix tabsVonC
2013-11-04Fix default separator pattern for attribute in slide.VonC
2013-11-04Fix markdown.js slideAttributesSeparator selection.VonC
2013-11-04Rebased on dev, and following contribution guideline.VonC
2013-11-04Fix markdown vertical wrapping section element generation.VonC
2013-11-04Make sure a pattern doesn't include space.VonC
2013-11-04Fix bug on data attributes for first vertical slide.VonC
The first slide of a vertical stack see some data attributes ignored. Mainly the data-transition one. Repeat all data-attributes on the wrapping section element. Ignore any other attributes (like 'id="xxx"'), in order to not mess with internal links (by repeating twice an id).
2013-11-04Add attributes in markdown for slide generation.VonC
By default, look for <!-- slide-attributes: xxxx -->. Whatever 'xxx' is will be added to the section attributes. You can define your own pattern with 'data-attributes'. For instance 'data-attributes="^\s*?-- (.*?)$"': that will be added to the options. The 'attributes' section is removed from the content of the slide, so the final markdown doesn't reflect them. That also means you can add those attributes *anywhere* in the slide But that allows for *any* attribute to be added for a specifc slide, like: - id="plan", for allowing internal link (issue #430) - data-background="#ff0000" - data-transition="fade" You list those attributes on a single line, like - (default): ` <!-- id="plan" data-background="#ff0000" -->` - or, with an alternative data-attributes pattern: ` -- id="plan" data-background="#ff0000"` Again, that line is remove from the final content.
2013-10-31Removing global flag for replacing whitespacesGabriel Pillet
2013-10-28format tweaks markdown.js, remove extra image assetHakim El Hattab
2013-10-27Add 'data-element-attributes' attr. to 'section'.VonC
By default '{\\\.\s*?([^}]+?)}'.
2013-10-27Cleanup code, remove console log debugs.VonC
2013-10-27Add attributes extracted from an attribute.VonC
Allows to add attributes to element of an attribute which contains the attribute pattern.
2013-10-27Uses the right method setAttribute.VonC
Works better, and the html elements get their attributes.
2013-10-27First implem for adding classes to enclosing elts.VonC
Extra text representing classes is detected and correctly removed. Adding attributes isn't working yet.
2013-10-11better check for arrays in markdown pluginHakim El Hattab
2013-09-29Property 'length' is not a variable.Lars Kappert
2013-09-06markdown plugin can now process slides that are added at runtimeHakim El Hattab
2013-09-06fix issue with notes on last slide of external markdown #589Hakim El Hattab
2013-08-27markdown refactoring #507Hakim El Hattab
2013-08-24fix bug where markdown notes in last slide would not parse #574Hakim El Hattab
2013-08-24always use 'i' as iteratorHakim El Hattab
2013-08-24markdown refactoring; comments, renamed functions, shorter argument listsHakim El Hattab
2013-08-24more markdown plugin refactoringHakim El Hattab
2013-08-23standardize way of declaring functionsHakim El Hattab
2013-08-23update markdown plugin formatting to match reveal.js coreHakim El Hattab
2013-08-20merge support for notes when using external markdownHakim El Hattab
2013-07-31Merge branch 'bug/markdown' of https://github.com/snowyu/reveal.js into devHakim El Hattab
2013-07-31* [bug] fixed render markdown file error like this:Riceball LEE
```html <section data-markdown> <script type="text/template"> </script> </section> ```
2013-07-23added custom charset support for external markdown fileEmile 'iMil' Heitor
2013-06-25Support for notes within markdownAdam Hepton
2013-05-01Replace the ShowDown Markdown engine with markedAmit Kotlovski
2013-04-20forward all attributes for markdown slides (#413)Hakim El Hattab
2013-04-20Added support for data-state in section when using external markdown files.Martin Kurtsson
2013-03-24More verbose error slide (HTTP necessary)Jakub Holy
2013-03-24Better error reporting for external Markdown filesJakub Holy
1. Show an alert when loading the file throws an exception 2. Whenever the status isn't success (2xx) - upon exception or e.g. "file not found" - replace the section's content with information about the failure (instead of being silent about it and showing a blank slide). We need to inform the user something went wrong, not just be silent about it. An experienced developer, upon seing a blank slide, will likely check the javascript console - but the rest will profit from being told about the problem (and solution) explicitely.
2013-03-01Update markdown.jsynonp
Allow HTML tags in external markdown files
2013-02-26Update plugin/markdown/markdown.jsasmod3us
Use textContent instead of innerHTML to prevent encoding of certain characters in Markdown code blocks.
2013-01-30Slightly refactored "slidify" flowLars Kappert
2013-01-29Support for external markdown files, including configurable (vertical) slide ↵Lars Kappert
separator
2012-11-16null check for notes in markdown parser (#253)Hakim El Hattab
2012-11-16avoid stripping out notes when parsing markdown (closes #253)Hakim El Hattab
2012-10-28update syntax highlight after editing (#210), move markdown and highlight ↵Hakim El Hattab
scripts from lib to plugin