mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-28 22:15:12 -04:00
Add Slide Mode
using reveal.js and some part of reveal-md
This commit is contained in:
parent
75ae505a15
commit
f51b7370f0
81 changed files with 14277 additions and 7 deletions
6
app.js
6
app.js
|
@ -357,6 +357,10 @@ app.get("/features", response.showFeatures);
|
|||
app.get("/s/:shortid", response.showPublishNote);
|
||||
//publish note actions
|
||||
app.get("/s/:shortid/:action", response.publishNoteActions);
|
||||
|
||||
//add p
|
||||
app.get("/p/:shortid", response.showPublishSlide);
|
||||
|
||||
//get note by id
|
||||
app.get("/:noteId", response.showNote);
|
||||
//note actions
|
||||
|
@ -391,4 +395,4 @@ if (config.usessl) {
|
|||
}
|
||||
process.on('uncaughtException', function (err) {
|
||||
logger.error(err);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue