Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-06 | code format tweak | Hakim El Hattab | |
2014-04-06 | Merge branch 'xhr-local' of https://github.com/malyw/reveal.js into dev | Hakim El Hattab | |
2014-04-06 | Merge pull request #682 from tentacode/patch-1 | Hakim El Hattab | |
Indentation issue when using code in a markdown slide | |||
2014-04-02 | Mark xhr.status=0 as successful | Sergey Gospodarets | |
2014-04-02 | Mark xhr.status=0 as successful | Sergey Gospodarets | |
2014-02-17 | renamed markdown attributes for clarity and consistency: data-vertical -> ↵ | Hakim El Hattab | |
data-separator-vertical, data-notes -> data-separator-notes | |||
2013-11-30 | Simpler 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-30 | Removes console.log calls. | VonC | |
2013-11-30 | Fix previous element selection. | VonC | |
2013-11-30 | Fix element attributes, except for multi-line. | VonC | |
2013-11-30 | Remove section attribute implementation. | VonC | |
2013-11-30 | First refactoring | VonC | |
2013-11-06 | Add slide attributes for single slide section case. | VonC | |
2013-11-04 | Remove console.log debugs, and fix tabs | VonC | |
2013-11-04 | Fix default separator pattern for attribute in slide. | VonC | |
2013-11-04 | Fix markdown.js slideAttributesSeparator selection. | VonC | |
2013-11-04 | Rebased on dev, and following contribution guideline. | VonC | |
2013-11-04 | Fix markdown vertical wrapping section element generation. | VonC | |
2013-11-04 | Make sure a pattern doesn't include space. | VonC | |
2013-11-04 | Fix 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-04 | Add 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-31 | Removing global flag for replacing whitespaces | Gabriel Pillet | |
2013-10-28 | format tweaks markdown.js, remove extra image asset | Hakim El Hattab | |
2013-10-27 | Add 'data-element-attributes' attr. to 'section'. | VonC | |
By default '{\\\.\s*?([^}]+?)}'. | |||
2013-10-27 | Cleanup code, remove console log debugs. | VonC | |
2013-10-27 | Add attributes extracted from an attribute. | VonC | |
Allows to add attributes to element of an attribute which contains the attribute pattern. | |||
2013-10-27 | Uses the right method setAttribute. | VonC | |
Works better, and the html elements get their attributes. | |||
2013-10-27 | First 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-11 | better check for arrays in markdown plugin | Hakim El Hattab | |
2013-09-29 | Property 'length' is not a variable. | Lars Kappert | |
2013-09-06 | markdown plugin can now process slides that are added at runtime | Hakim El Hattab | |
2013-09-06 | fix issue with notes on last slide of external markdown #589 | Hakim El Hattab | |
2013-08-27 | markdown refactoring #507 | Hakim El Hattab | |
2013-08-24 | fix bug where markdown notes in last slide would not parse #574 | Hakim El Hattab | |
2013-08-24 | always use 'i' as iterator | Hakim El Hattab | |
2013-08-24 | markdown refactoring; comments, renamed functions, shorter argument lists | Hakim El Hattab | |
2013-08-24 | more markdown plugin refactoring | Hakim El Hattab | |
2013-08-23 | standardize way of declaring functions | Hakim El Hattab | |
2013-08-23 | update markdown plugin formatting to match reveal.js core | Hakim El Hattab | |
2013-08-20 | merge support for notes when using external markdown | Hakim El Hattab | |
2013-07-31 | Merge branch 'bug/markdown' of https://github.com/snowyu/reveal.js into dev | Hakim 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-23 | added custom charset support for external markdown file | Emile 'iMil' Heitor | |
2013-06-25 | Support for notes within markdown | Adam Hepton | |
2013-05-01 | Replace the ShowDown Markdown engine with marked | Amit Kotlovski | |
2013-04-20 | forward all attributes for markdown slides (#413) | Hakim El Hattab | |
2013-04-20 | Added support for data-state in section when using external markdown files. | Martin Kurtsson | |
2013-03-24 | More verbose error slide (HTTP necessary) | Jakub Holy | |
2013-03-24 | Better error reporting for external Markdown files | Jakub 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-01 | Update markdown.js | ynonp | |
Allow HTML tags in external markdown files | |||
2013-02-26 | Update plugin/markdown/markdown.js | asmod3us | |
Use textContent instead of innerHTML to prevent encoding of certain characters in Markdown code blocks. | |||
2013-01-30 | Slightly refactored "slidify" flow | Lars Kappert | |
2013-01-29 | Support for external markdown files, including configurable (vertical) slide ↵ | Lars Kappert | |
separator | |||
2012-11-16 | null check for notes in markdown parser (#253) | Hakim El Hattab | |
2012-11-16 | avoid stripping out notes when parsing markdown (closes #253) | Hakim El Hattab | |
2012-10-28 | update syntax highlight after editing (#210), move markdown and highlight ↵ | Hakim El Hattab | |
scripts from lib to plugin |