mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-31 19:15:58 +01:00
RUN "npm install" AFTER THIS GIT PULL!!
Integrated markdown parsing to all post content. Title content by default not going to be parsed, using default options unless circumstances dictate otherwise.
This commit is contained in:
@@ -23,7 +23,8 @@
|
|||||||
"passport-twitter": "0.1.4",
|
"passport-twitter": "0.1.4",
|
||||||
"passport-google-oauth": "0.1.5",
|
"passport-google-oauth": "0.1.5",
|
||||||
"passport-facebook": "0.1.5",
|
"passport-facebook": "0.1.5",
|
||||||
"less-middleware": "0.1.11"
|
"less-middleware": "0.1.11",
|
||||||
|
"marked": "0.2.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"optionalDependencies": {},
|
"optionalDependencies": {},
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
var RDB = require('./redis.js'),
|
var RDB = require('./redis.js'),
|
||||||
utils = require('./utils.js');
|
utils = require('./utils.js'),
|
||||||
|
marked = require('marked');
|
||||||
|
|
||||||
(function(Posts) {
|
(function(Posts) {
|
||||||
//data structure
|
//data structure
|
||||||
@@ -41,7 +42,7 @@ var RDB = require('./redis.js'),
|
|||||||
var posts = [];
|
var posts = [];
|
||||||
for (var i=0, ii=content.length; i<ii; i++) {
|
for (var i=0, ii=content.length; i<ii; i++) {
|
||||||
posts.push({
|
posts.push({
|
||||||
'content' : content[i],
|
'content' : marked(content[i]),
|
||||||
'uid' : uid[i],
|
'uid' : uid[i],
|
||||||
'timestamp' : timestamp[i],
|
'timestamp' : timestamp[i],
|
||||||
'relativeTime': utils.relativeTime(timestamp[i])
|
'relativeTime': utils.relativeTime(timestamp[i])
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ var RDB = require('./redis.js'),
|
|||||||
posts.get(function(data) {
|
posts.get(function(data) {
|
||||||
topic_body = topic_body.parse(data);
|
topic_body = topic_body.parse(data);
|
||||||
callback(topic_body);
|
callback(topic_body);
|
||||||
}, tid, start, end)
|
}, tid, start, end);
|
||||||
};
|
};
|
||||||
|
|
||||||
// this needs to move into forum.js
|
// this needs to move into forum.js
|
||||||
|
|||||||
Reference in New Issue
Block a user