Add Slide Mode

using reveal.js
and some part of reveal-md
This commit is contained in:
xnum 2015-11-23 20:38:26 +08:00
parent 75ae505a15
commit f51b7370f0
81 changed files with 14277 additions and 7 deletions

6
app.js
View file

@ -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);
});
});