Merge pull request #360 from rgarmsen2295/mm-375d
MM-375 Adds text formatting features using a modified version of the marked js library
Этот коммит содержится в:
@@ -156,7 +156,7 @@ module.exports = React.createClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
var channel = this.state.channel;
|
var channel = this.state.channel;
|
||||||
var description = utils.textToJsx(channel.description, {singleline: true, noMentionHighlight: true});
|
var description = utils.textToJsx(channel.description, {singleline: true, noMentionHighlight: true, noTextFormatting: true});
|
||||||
var popoverContent = React.renderToString(<MessageWrapper message={channel.description}/>);
|
var popoverContent = React.renderToString(<MessageWrapper message={channel.description}/>);
|
||||||
var channelTitle = channel.display_name;
|
var channelTitle = channel.display_name;
|
||||||
var currentId = UserStore.getCurrentId();
|
var currentId = UserStore.getCurrentId();
|
||||||
|
|||||||
@@ -184,6 +184,7 @@ module.exports = React.createClass({
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
var allowTextFormatting = config.AllowTextFormatting;
|
||||||
|
|
||||||
var postError = null;
|
var postError = null;
|
||||||
if (this.state.postError) {
|
if (this.state.postError) {
|
||||||
@@ -204,6 +205,10 @@ module.exports = React.createClass({
|
|||||||
if (postError) {
|
if (postError) {
|
||||||
postFooterClassName += ' has-error';
|
postFooterClassName += ' has-error';
|
||||||
}
|
}
|
||||||
|
var extraInfo = <MsgTyping channelId={this.props.channelId} parentId={this.props.rootId} />;
|
||||||
|
if (this.state.messageText.split(' ').length > 1 && allowTextFormatting) {
|
||||||
|
extraInfo = <span className='msg-format-help'>_<em>italics</em>_ *<strong>bold</strong>* `<code className='code-info'>code</code>`</span>;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form onSubmit={this.handleSubmit}>
|
<form onSubmit={this.handleSubmit}>
|
||||||
@@ -224,7 +229,7 @@ module.exports = React.createClass({
|
|||||||
onFileUpload={this.handleFileUploadComplete}
|
onFileUpload={this.handleFileUploadComplete}
|
||||||
onUploadError={this.handleUploadError} />
|
onUploadError={this.handleUploadError} />
|
||||||
</div>
|
</div>
|
||||||
<MsgTyping channelId={this.props.channelId} parentId={this.props.rootId} />
|
{extraInfo}
|
||||||
<div className={postFooterClassName}>
|
<div className={postFooterClassName}>
|
||||||
<input type='button' className='btn btn-primary comment-btn pull-right' value='Add Comment' onClick={this.handleSubmit} />
|
<input type='button' className='btn btn-primary comment-btn pull-right' value='Add Comment' onClick={this.handleSubmit} />
|
||||||
{postError}
|
{postError}
|
||||||
|
|||||||
@@ -224,6 +224,7 @@ module.exports = React.createClass({
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
var allowTextFormatting = config.AllowTextFormatting;
|
||||||
|
|
||||||
var postError = null;
|
var postError = null;
|
||||||
if (this.state.postError) {
|
if (this.state.postError) {
|
||||||
@@ -244,6 +245,10 @@ module.exports = React.createClass({
|
|||||||
if (postError) {
|
if (postError) {
|
||||||
postFooterClassName += ' has-error';
|
postFooterClassName += ' has-error';
|
||||||
}
|
}
|
||||||
|
var extraInfo = <MsgTyping channelId={this.state.channel_id} parentId='' />;
|
||||||
|
if (this.state.messageText.split(' ').length > 1 && allowTextFormatting) {
|
||||||
|
extraInfo = <span className='msg-typing'>_<em>italics</em>_ *<strong>bold</strong>* `<code className='code-info'>code</code>`</span>;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form id='create_post' ref='topDiv' role='form' onSubmit={this.handleSubmit}>
|
<form id='create_post' ref='topDiv' role='form' onSubmit={this.handleSubmit}>
|
||||||
@@ -268,7 +273,7 @@ module.exports = React.createClass({
|
|||||||
{postError}
|
{postError}
|
||||||
{serverError}
|
{serverError}
|
||||||
{preview}
|
{preview}
|
||||||
<MsgTyping channelId={this.state.channelId} parentId=''/>
|
{extraInfo}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
@@ -4,59 +4,69 @@
|
|||||||
var FileAttachmentList = require('./file_attachment_list.jsx');
|
var FileAttachmentList = require('./file_attachment_list.jsx');
|
||||||
var UserStore = require('../stores/user_store.jsx');
|
var UserStore = require('../stores/user_store.jsx');
|
||||||
var utils = require('../utils/utils.jsx');
|
var utils = require('../utils/utils.jsx');
|
||||||
|
var formatText = require('../../static/js/marked/lib/marked.js');
|
||||||
|
|
||||||
module.exports = React.createClass({
|
module.exports = React.createClass({
|
||||||
componentWillReceiveProps: function(nextProps) {
|
componentWillReceiveProps: function(nextProps) {
|
||||||
var linkData = utils.extractLinks(nextProps.post.message);
|
var linkData = utils.extractLinks(nextProps.post.message);
|
||||||
this.setState({ links: linkData["links"], message: linkData["text"] });
|
this.setState({links: linkData.links, message: linkData.text});
|
||||||
},
|
},
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
var linkData = utils.extractLinks(this.props.post.message);
|
var linkData = utils.extractLinks(this.props.post.message);
|
||||||
return { links: linkData["links"], message: linkData["text"] };
|
return {links: linkData.links, message: linkData.text};
|
||||||
},
|
},
|
||||||
render: function() {
|
render: function() {
|
||||||
var post = this.props.post;
|
var post = this.props.post;
|
||||||
var filenames = this.props.post.filenames;
|
var filenames = this.props.post.filenames;
|
||||||
var parentPost = this.props.parentPost;
|
var parentPost = this.props.parentPost;
|
||||||
var inner = utils.textToJsx(this.state.message);
|
var inner = utils.textToJsx(this.state.message);
|
||||||
|
var allowTextFormatting = config.AllowTextFormatting;
|
||||||
|
|
||||||
var comment = "";
|
var comment = '';
|
||||||
var reply = "";
|
var postClass = '';
|
||||||
var postClass = "";
|
|
||||||
|
|
||||||
if (parentPost) {
|
if (parentPost) {
|
||||||
var profile = UserStore.getProfile(parentPost.user_id);
|
var profile = UserStore.getProfile(parentPost.user_id);
|
||||||
var apostrophe = "";
|
var apostrophe = '';
|
||||||
var name = "...";
|
var name = '...';
|
||||||
if (profile != null) {
|
if (profile != null) {
|
||||||
if (profile.username.slice(-1) === 's') {
|
if (profile.username.slice(-1) === 's') {
|
||||||
apostrophe = "'";
|
apostrophe = "'";
|
||||||
} else {
|
} else {
|
||||||
apostrophe = "'s";
|
apostrophe = "'s";
|
||||||
}
|
}
|
||||||
name = <a className="theme" onClick={function(){ utils.searchForTerm(profile.username); }}>{profile.username}</a>;
|
name = <a className='theme' onClick={utils.searchForTerm.bind(this, profile.username)}>{profile.username}</a>;
|
||||||
}
|
}
|
||||||
|
|
||||||
var message = ""
|
var message = '';
|
||||||
if (parentPost.message) {
|
if (parentPost.message) {
|
||||||
message = utils.replaceHtmlEntities(parentPost.message)
|
message = utils.replaceHtmlEntities(parentPost.message);
|
||||||
} else if (parentPost.filenames.length) {
|
} else if (parentPost.filenames.length) {
|
||||||
message = parentPost.filenames[0].split('/').pop();
|
message = parentPost.filenames[0].split('/').pop();
|
||||||
|
|
||||||
if (parentPost.filenames.length === 2) {
|
if (parentPost.filenames.length === 2) {
|
||||||
message += " plus 1 other file";
|
message += ' plus 1 other file';
|
||||||
} else if (parentPost.filenames.length > 2) {
|
} else if (parentPost.filenames.length > 2) {
|
||||||
message += " plus " + (parentPost.filenames.length - 1) + " other files";
|
message += ' plus ' + (parentPost.filenames.length - 1) + ' other files';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (allowTextFormatting) {
|
||||||
|
message = formatText(message, {sanitize: true, mangle: false, gfm: true, breaks: true, tables: false, smartypants: true, renderer: utils.customMarkedRenderer({disable: true})});
|
||||||
comment = (
|
comment = (
|
||||||
<p className="post-link">
|
<p className='post-link'>
|
||||||
<span>Commented on {name}{apostrophe} message: <a className="theme" onClick={this.props.handleCommentClick}>{message}</a></span>
|
<span>Commented on {name}{apostrophe} message: <a className='theme' onClick={this.props.handleCommentClick} dangerouslySetInnerHTML={{__html: message}} /></span>
|
||||||
</p>
|
</p>
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
comment = (
|
||||||
|
<p className='post-link'>
|
||||||
|
<span>Commented on {name}{apostrophe} message: <a className='theme' onClick={this.props.handleCommentClick}>{message}</a></span>
|
||||||
|
</p>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
postClass += " post-comment";
|
postClass += ' post-comment';
|
||||||
}
|
}
|
||||||
|
|
||||||
var embed;
|
var embed;
|
||||||
@@ -64,17 +74,25 @@ module.exports = React.createClass({
|
|||||||
embed = utils.getEmbed(this.state.links[0]);
|
embed = utils.getEmbed(this.state.links[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
var innerHolder = <p key={post.id + '_message'} className={postClass}><span>{inner}</span></p>;
|
||||||
<div className="post-body">
|
if (allowTextFormatting) {
|
||||||
{ comment }
|
innerHolder = <div key={post.id + '_message'} className={postClass}><span>{inner}</span></div>;
|
||||||
<p key={post.id+"_message"} className={postClass}><span>{inner}</span></p>
|
}
|
||||||
{ filenames && filenames.length > 0 ?
|
|
||||||
<FileAttachmentList
|
var fileAttachmentHolder = '';
|
||||||
|
if (filenames && filenames.length > 0) {
|
||||||
|
fileAttachmentHolder = (<FileAttachmentList
|
||||||
filenames={filenames}
|
filenames={filenames}
|
||||||
modalId={"view_image_modal_" + post.id}
|
modalId={'view_image_modal_' + post.id}
|
||||||
channelId={post.channel_id}
|
channelId={post.channel_id}
|
||||||
userId={post.user_id} />
|
userId={post.user_id} />);
|
||||||
: "" }
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className='post-body'>
|
||||||
|
{comment}
|
||||||
|
{innerHolder}
|
||||||
|
{fileAttachmentHolder}
|
||||||
{embed}
|
{embed}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -197,7 +197,10 @@ module.exports = React.createClass({
|
|||||||
var post = post_list.posts[msg.props.post_id];
|
var post = post_list.posts[msg.props.post_id];
|
||||||
post.message = msg.props.message;
|
post.message = msg.props.message;
|
||||||
|
|
||||||
|
post.lastEditDate = Date.now();
|
||||||
|
|
||||||
post_list.posts[post.id] = post;
|
post_list.posts[post.id] = post;
|
||||||
|
|
||||||
this.setState({ post_list: post_list });
|
this.setState({ post_list: post_list });
|
||||||
|
|
||||||
PostStore.storePosts(msg.channel_id, post_list);
|
PostStore.storePosts(msg.channel_id, post_list);
|
||||||
@@ -430,8 +433,13 @@ module.exports = React.createClass({
|
|||||||
// it is the last comment if it is last post in the channel or the next post has a different root post
|
// it is the last comment if it is last post in the channel or the next post has a different root post
|
||||||
var isLastComment = utils.isComment(post) && (i === 0 || posts[order[i-1]].root_id != post.root_id);
|
var isLastComment = utils.isComment(post) && (i === 0 || posts[order[i-1]].root_id != post.root_id);
|
||||||
|
|
||||||
|
var postKey = post.id;
|
||||||
|
if (post.lastEditDate) {
|
||||||
|
postKey += post.lastEditDate;
|
||||||
|
}
|
||||||
|
|
||||||
var postCtl = (
|
var postCtl = (
|
||||||
<Post ref={post.id} sameUser={sameUser} sameRoot={sameRoot} post={post} parentPost={parentPost} key={post.id}
|
<Post ref={post.id} sameUser={sameUser} sameRoot={sameRoot} post={post} parentPost={parentPost} key={postKey}
|
||||||
posts={posts} hideProfilePic={hideProfilePic} isLastComment={isLastComment}
|
posts={posts} hideProfilePic={hideProfilePic} isLastComment={isLastComment}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ RhsHeaderPost = React.createClass({
|
|||||||
|
|
||||||
RootPost = React.createClass({
|
RootPost = React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
|
var allowTextFormatting = config.AllowTextFormatting;
|
||||||
var post = this.props.post;
|
var post = this.props.post;
|
||||||
var message = utils.textToJsx(post.message);
|
var message = utils.textToJsx(post.message);
|
||||||
var isOwner = UserStore.getCurrentId() == post.user_id;
|
var isOwner = UserStore.getCurrentId() == post.user_id;
|
||||||
@@ -76,6 +77,11 @@ RootPost = React.createClass({
|
|||||||
channelName = (channel.type === 'D') ? "Private Message" : channel.display_name;
|
channelName = (channel.type === 'D') ? "Private Message" : channel.display_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var messageHolder = <p>{message}</p>;
|
||||||
|
if (allowTextFormatting) {
|
||||||
|
messageHolder = <div>{message}</div>;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={"post post--root " + currentUserCss}>
|
<div className={"post post--root " + currentUserCss}>
|
||||||
<div className="post-right-channel__name">{ channelName }</div>
|
<div className="post-right-channel__name">{ channelName }</div>
|
||||||
@@ -101,7 +107,7 @@ RootPost = React.createClass({
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div className="post-body">
|
<div className="post-body">
|
||||||
<p>{message}</p>
|
{messageHolder}
|
||||||
{ post.filenames && post.filenames.length > 0 ?
|
{ post.filenames && post.filenames.length > 0 ?
|
||||||
<FileAttachmentList
|
<FileAttachmentList
|
||||||
filenames={post.filenames}
|
filenames={post.filenames}
|
||||||
@@ -119,6 +125,7 @@ RootPost = React.createClass({
|
|||||||
|
|
||||||
CommentPost = React.createClass({
|
CommentPost = React.createClass({
|
||||||
render: function() {
|
render: function() {
|
||||||
|
var allowTextFormatting = config.AllowTextFormatting;
|
||||||
var post = this.props.post;
|
var post = this.props.post;
|
||||||
|
|
||||||
var commentClass = "post";
|
var commentClass = "post";
|
||||||
@@ -138,6 +145,11 @@ CommentPost = React.createClass({
|
|||||||
var message = utils.textToJsx(post.message);
|
var message = utils.textToJsx(post.message);
|
||||||
var timestamp = UserStore.getCurrentUser().update_at;
|
var timestamp = UserStore.getCurrentUser().update_at;
|
||||||
|
|
||||||
|
var messageHolder = <p>{message}</p>;
|
||||||
|
if (allowTextFormatting) {
|
||||||
|
messageHolder = <div>{message}</div>;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={commentClass + " " + currentUserCss}>
|
<div className={commentClass + " " + currentUserCss}>
|
||||||
<div className="post-profile-img__container">
|
<div className="post-profile-img__container">
|
||||||
@@ -160,7 +172,7 @@ CommentPost = React.createClass({
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div className="post-body">
|
<div className="post-body">
|
||||||
<p>{message}</p>
|
{messageHolder}
|
||||||
{ post.filenames && post.filenames.length > 0 ?
|
{ post.filenames && post.filenames.length > 0 ?
|
||||||
<FileAttachmentList
|
<FileAttachmentList
|
||||||
filenames={post.filenames}
|
filenames={post.filenames}
|
||||||
@@ -273,11 +285,22 @@ module.exports = React.createClass({
|
|||||||
root_post = post_list.posts[selected_post.root_id];
|
root_post = post_list.posts[selected_post.root_id];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var rootPostKey = root_post.id
|
||||||
|
if (root_post.lastEditDate) {
|
||||||
|
rootPostKey += root_post.lastEditDate;
|
||||||
|
}
|
||||||
|
|
||||||
var posts_array = [];
|
var posts_array = [];
|
||||||
|
|
||||||
for (var postId in post_list.posts) {
|
for (var postId in post_list.posts) {
|
||||||
var cpost = post_list.posts[postId];
|
var cpost = post_list.posts[postId];
|
||||||
if (cpost.root_id == root_post.id) {
|
if (cpost.root_id == root_post.id) {
|
||||||
|
var cpostKey = cpost.id
|
||||||
|
if (cpost.lastEditDate) {
|
||||||
|
cpostKey += cpost.lastEditDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
cpost.cpostKey = cpostKey;
|
||||||
posts_array.push(cpost);
|
posts_array.push(cpost);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -300,10 +323,10 @@ module.exports = React.createClass({
|
|||||||
<div className="sidebar-right__body">
|
<div className="sidebar-right__body">
|
||||||
<RhsHeaderPost fromSearch={this.props.fromSearch} isMentionSearch={this.props.isMentionSearch} />
|
<RhsHeaderPost fromSearch={this.props.fromSearch} isMentionSearch={this.props.isMentionSearch} />
|
||||||
<div className="post-right__scroll">
|
<div className="post-right__scroll">
|
||||||
<RootPost post={root_post} commentCount={posts_array.length}/>
|
<RootPost key={rootPostKey} post={root_post} commentCount={posts_array.length}/>
|
||||||
<div className="post-right-comments-container">
|
<div className="post-right-comments-container">
|
||||||
{ posts_array.map(function(cpost) {
|
{ posts_array.map(function(cpost) {
|
||||||
return <CommentPost ref={cpost.id} key={cpost.id} post={cpost} selected={ (cpost.id == selected_post.id) } />
|
return <CommentPost ref={cpost.id} key={cpost.cpostKey} post={cpost} selected={ (cpost.id == selected_post.id) } />
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
<div className="post-create__container">
|
<div className="post-create__container">
|
||||||
|
|||||||
@@ -84,6 +84,8 @@ var SearchItem = React.createClass({
|
|||||||
channelName = (channel.type === 'D') ? "Private Message" : channel.display_name;
|
channelName = (channel.type === 'D') ? "Private Message" : channel.display_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var searchItemKey = Date.now().toString();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="search-item-container post" onClick={this.handleClick}>
|
<div className="search-item-container post" onClick={this.handleClick}>
|
||||||
<div className="search-channel__name">{ channelName }</div>
|
<div className="search-channel__name">{ channelName }</div>
|
||||||
@@ -99,7 +101,7 @@ var SearchItem = React.createClass({
|
|||||||
</time>
|
</time>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div className="search-item-snippet"><span>{message}</span></div>
|
<div key={this.props.key + searchItemKey} className="search-item-snippet"><span>{message}</span></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -131,6 +133,7 @@ module.exports = React.createClass({
|
|||||||
if (this.isMounted()) {
|
if (this.isMounted()) {
|
||||||
var newState = getStateFromStores();
|
var newState = getStateFromStores();
|
||||||
if (!utils.areStatesEqual(newState, this.state)) {
|
if (!utils.areStatesEqual(newState, this.state)) {
|
||||||
|
newState.last_edit_time = Date.now();
|
||||||
this.setState(newState);
|
this.setState(newState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -152,6 +155,11 @@ module.exports = React.createClass({
|
|||||||
var noResults = (!results || !results.order || !results.order.length);
|
var noResults = (!results || !results.order || !results.order.length);
|
||||||
var searchTerm = PostStore.getSearchTerm();
|
var searchTerm = PostStore.getSearchTerm();
|
||||||
|
|
||||||
|
var searchItemKey = "";
|
||||||
|
if (this.state.last_edit_time) {
|
||||||
|
searchItemKey += this.state.last_edit_time.toString();
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="sidebar--right__content">
|
<div className="sidebar--right__content">
|
||||||
<div className="search-bar__container sidebar--right__search-header">{searchForm}</div>
|
<div className="search-bar__container sidebar--right__search-header">{searchForm}</div>
|
||||||
@@ -162,7 +170,7 @@ module.exports = React.createClass({
|
|||||||
{ noResults ? <div className="sidebar--right__subheader">No results</div>
|
{ noResults ? <div className="sidebar--right__subheader">No results</div>
|
||||||
: results.order.map(function(id) {
|
: results.order.map(function(id) {
|
||||||
var post = results.posts[id];
|
var post = results.posts[id];
|
||||||
return <SearchItem key={post.id} post={post} term={searchTerm} isMentionSearch={this.props.isMentionSearch} />
|
return <SearchItem key={searchItemKey + post.id} post={post} term={searchTerm} isMentionSearch={this.props.isMentionSearch} />
|
||||||
}, this)
|
}, this)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ var BrowserStore = require('../stores/browser_store.jsx');
|
|||||||
var utils = require('../utils/utils.jsx');
|
var utils = require('../utils/utils.jsx');
|
||||||
var SidebarHeader = require('./sidebar_header.jsx');
|
var SidebarHeader = require('./sidebar_header.jsx');
|
||||||
var SearchBox = require('./search_bar.jsx');
|
var SearchBox = require('./search_bar.jsx');
|
||||||
|
var formatText = require('../../static/js/marked/lib/marked.js');
|
||||||
|
|
||||||
var Constants = require('../utils/constants.jsx');
|
var Constants = require('../utils/constants.jsx');
|
||||||
var ActionTypes = Constants.ActionTypes;
|
var ActionTypes = Constants.ActionTypes;
|
||||||
@@ -209,6 +210,11 @@ module.exports = React.createClass({
|
|||||||
utils.notifyMe(title, username + ' did something new', channel);
|
utils.notifyMe(title, username + ' did something new', channel);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
var allowTextFormatting = config.AllowTextFormatting;
|
||||||
|
if (allowTextFormatting) {
|
||||||
|
notifyText = formatText(notifyText, {sanitize: false, mangle: false, gfm: true, breaks: true, tables: false, smartypants: true, renderer: utils.customMarkedRenderer({disable: true})});
|
||||||
|
}
|
||||||
|
notifyText = utils.replaceHtmlEntities(notifyText);
|
||||||
utils.notifyMe(title, username + ' wrote: ' + notifyText, channel);
|
utils.notifyMe(title, username + ' wrote: ' + notifyText, channel);
|
||||||
}
|
}
|
||||||
if (!user.notify_props || user.notify_props.desktop_sound === 'true') {
|
if (!user.notify_props || user.notify_props.desktop_sound === 'true') {
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ var ActionTypes = Constants.ActionTypes;
|
|||||||
var AsyncClient = require('./async_client.jsx');
|
var AsyncClient = require('./async_client.jsx');
|
||||||
var client = require('./client.jsx');
|
var client = require('./client.jsx');
|
||||||
var Autolinker = require('autolinker');
|
var Autolinker = require('autolinker');
|
||||||
|
var formatText = require('../../static/js/marked/lib/marked.js');
|
||||||
|
|
||||||
module.exports.isEmail = function(email) {
|
module.exports.isEmail = function(email) {
|
||||||
var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
|
var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
|
||||||
@@ -95,15 +96,14 @@ module.exports.getCookie = function(name) {
|
|||||||
if (parts.length == 2) return parts.pop().split(";").shift();
|
if (parts.length == 2) return parts.pop().split(";").shift();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
module.exports.notifyMe = function(title, body, channel) {
|
module.exports.notifyMe = function(title, body, channel) {
|
||||||
if ("Notification" in window && Notification.permission !== 'denied') {
|
if ('Notification' in window && Notification.permission !== 'denied') {
|
||||||
Notification.requestPermission(function(permission) {
|
Notification.requestPermission(function(permission) {
|
||||||
if (Notification.permission !== permission) {
|
if (Notification.permission !== permission) {
|
||||||
Notification.permission = permission;
|
Notification.permission = permission;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (permission === "granted") {
|
if (permission === 'granted') {
|
||||||
var notification = new Notification(title,
|
var notification = new Notification(title,
|
||||||
{body: body, tag: body, icon: '/static/images/icon50x50.gif'}
|
{body: body, tag: body, icon: '/static/images/icon50x50.gif'}
|
||||||
);
|
);
|
||||||
@@ -112,7 +112,7 @@ module.exports.notifyMe = function(title, body, channel) {
|
|||||||
if (channel) {
|
if (channel) {
|
||||||
module.exports.switchChannel(channel);
|
module.exports.switchChannel(channel);
|
||||||
} else {
|
} else {
|
||||||
window.location.href = "/";
|
window.location.href = '/';
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
@@ -121,7 +121,7 @@ module.exports.notifyMe = function(title, body, channel) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
module.exports.ding = function() {
|
module.exports.ding = function() {
|
||||||
var audio = new Audio('/static/images/ding.mp3');
|
var audio = new Audio('/static/images/ding.mp3');
|
||||||
@@ -385,112 +385,262 @@ module.exports.searchForTerm = function(term) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var oldExplicitMentionRegex = /(?:<mention>)([\s\S]*?)(?:<\/mention>)/g;
|
/* Options:
|
||||||
var puncStartRegex = /^((?![@#])\W)+/g;
|
- disable: Parses out *'s and other format specifiers in the text, but doesn't convert to html
|
||||||
var puncEndRegex = /(\W)+$/g;
|
*/
|
||||||
|
module.exports.customMarkedRenderer = function(options) {
|
||||||
|
var customTextRenderer = new formatText.Renderer();
|
||||||
|
if (options && options.disable) {
|
||||||
|
customTextRenderer.paragraph = function(text) {
|
||||||
|
return text + ' ';
|
||||||
|
};
|
||||||
|
customTextRenderer.strong = function(text) {
|
||||||
|
return text;
|
||||||
|
};
|
||||||
|
customTextRenderer.em = function(text) {
|
||||||
|
return text;
|
||||||
|
};
|
||||||
|
customTextRenderer.codespan = function(code) {
|
||||||
|
return code;
|
||||||
|
};
|
||||||
|
customTextRenderer.link = function(href) {
|
||||||
|
return href;
|
||||||
|
};
|
||||||
|
customTextRenderer.image = function(href) {
|
||||||
|
return href;
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
customTextRenderer.link = function(href) {
|
||||||
|
return href;
|
||||||
|
};
|
||||||
|
customTextRenderer.image = function(href) {
|
||||||
|
return href;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return customTextRenderer;
|
||||||
|
};
|
||||||
|
|
||||||
module.exports.textToJsx = function(text, options) {
|
var puncStartRegex = /^((?![@#])[^A-Za-z0-9_<>])+/g;
|
||||||
|
var puncEndRegex = /([^A-Za-z0-9_<>])+$/g;
|
||||||
|
var startTagRegex = /(<\s*\w.*?>)+/g;
|
||||||
|
var endTagRegex = /(<\s*\/\s*\w\s*.*?>|<\s*br\s*>)+/g;
|
||||||
|
|
||||||
if (options && options['singleline']) {
|
module.exports.textToJsx = function(textToChange, options) {
|
||||||
var repRegex = new RegExp("\n", "g");
|
var useTextFormatting = config.AllowTextFormatting && (!options || !options.noTextFormatting);
|
||||||
text = text.replace(repRegex, " ");
|
var text = textToChange;
|
||||||
|
|
||||||
|
if (useTextFormatting) {
|
||||||
|
text = formatText(text, {sanitize: true, mangle: false, gfm: true, breaks: true, tables: false, smartypants: true, renderer: module.exports.customMarkedRenderer()});
|
||||||
}
|
}
|
||||||
|
|
||||||
var searchTerm = ""
|
if (options && options.singleline) {
|
||||||
if (options && options['searchTerm']) {
|
var repRegex = new RegExp('\n', 'g');
|
||||||
searchTerm = options['searchTerm'].toLowerCase()
|
text = text.replace(repRegex, ' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
var mentionClass = "mention-highlight";
|
var searchTerm = '';
|
||||||
if (options && options['noMentionHighlight']) {
|
if (options && options.searchTerm) {
|
||||||
mentionClass = "";
|
searchTerm = options.searchTerm.toLowerCase();
|
||||||
|
}
|
||||||
|
|
||||||
|
var mentionClass = 'mention-highlight';
|
||||||
|
if (options && options.noMentionHighlight) {
|
||||||
|
mentionClass = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
var inner = [];
|
var inner = [];
|
||||||
|
var codeFlag = false;
|
||||||
|
var codeString = '';
|
||||||
|
|
||||||
// Function specific regex
|
// Function specific regex
|
||||||
var hashRegex = /^href="#[^"]+"|(#[A-Za-z]+[A-Za-z0-9_\-]*[A-Za-z0-9])$/g;
|
var hashRegex = /^href="#[^"]+"|(#[A-Za-z]+[A-Za-z0-9_\-]*[A-Za-z0-9])$/g;
|
||||||
|
|
||||||
var implicitKeywords = UserStore.getCurrentMentionKeys();
|
var implicitKeywords = UserStore.getCurrentMentionKeys();
|
||||||
|
|
||||||
var lines = text.split("\n");
|
var lines = text.split('\n');
|
||||||
for (var i = 0; i < lines.length; i++) {
|
for (var i = 0; i < lines.length; i++) {
|
||||||
var line = lines[i];
|
var line = lines[i];
|
||||||
var words = line.split(" ");
|
var words = line.split(' ');
|
||||||
var highlightSearchClass = "";
|
var highlightSearchClass = '';
|
||||||
for (var z = 0; z < words.length; z++) {
|
for (var z = 0; z < words.length; z++) {
|
||||||
var word = words[z];
|
var word = words[z];
|
||||||
var trimWord = word.replace(puncStartRegex, '').replace(puncEndRegex, '').trim();
|
var trimWord;
|
||||||
|
if (useTextFormatting) {
|
||||||
|
trimWord = word.replace(endTagRegex, '').replace(startTagRegex, '').replace(puncStartRegex, '').replace(puncEndRegex, '').trim();
|
||||||
|
} else {
|
||||||
|
trimWord = word.replace(puncStartRegex, '').replace(puncEndRegex, '').trim();
|
||||||
|
}
|
||||||
var mentionRegex = /^(?:@)([a-z0-9_]+)$/gi; // looks loop invariant but a weird JS bug needs it to be redefined here
|
var mentionRegex = /^(?:@)([a-z0-9_]+)$/gi; // looks loop invariant but a weird JS bug needs it to be redefined here
|
||||||
var explicitMention = mentionRegex.exec(trimWord);
|
var explicitMention = mentionRegex.exec(trimWord);
|
||||||
|
var mClass;
|
||||||
|
|
||||||
if ((trimWord.toLowerCase().indexOf(searchTerm) > -1 || word.toLowerCase().indexOf(searchTerm) > -1) && searchTerm != "") {
|
var prefix = '';
|
||||||
|
var suffix = '';
|
||||||
highlightSearchClass = " search-highlight";
|
var prefixSpan = null;
|
||||||
|
var suffixSpan = <span key={word + i + z + 'suf_span'}> </span>;
|
||||||
|
if (useTextFormatting) {
|
||||||
|
if (word.match(startTagRegex)) {
|
||||||
|
prefix += word.match(startTagRegex);
|
||||||
|
}
|
||||||
|
if (word.replace(startTagRegex, '').match(puncStartRegex)) {
|
||||||
|
prefix += word.replace(startTagRegex, '').match(puncStartRegex);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (explicitMention &&
|
if (word.match(endTagRegex)) {
|
||||||
(UserStore.getProfileByUsername(explicitMention[1]) ||
|
suffix += word.match(endTagRegex);
|
||||||
Constants.SPECIAL_MENTIONS.indexOf(explicitMention[1]) !== -1))
|
}
|
||||||
{
|
if (word.replace(endTagRegex, '').match(puncEndRegex)) {
|
||||||
var name = explicitMention[1];
|
suffix += word.replace(endTagRegex, '').match(puncEndRegex);
|
||||||
// do both a non-case sensitive and case senstive check
|
}
|
||||||
var mClass = implicitKeywords.indexOf('@'+name.toLowerCase()) !== -1 || implicitKeywords.indexOf('@'+name) !== -1 ? mentionClass : "";
|
|
||||||
|
|
||||||
var suffix = word.match(puncEndRegex);
|
if (prefix) {
|
||||||
var prefix = word.match(puncStartRegex);
|
prefixSpan = <span key={word + i + z + 'pre_span'}><span dangerouslySetInnerHTML={{__html: prefix}} /></span>;
|
||||||
|
}
|
||||||
|
if (suffix) {
|
||||||
|
suffixSpan = <span key={word + i + z + 'suf_span'}><span dangerouslySetInnerHTML={{__html: suffix}} /> </span>;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
prefix = word.match(puncStartRegex);
|
||||||
|
suffix = word.match(puncEndRegex);
|
||||||
|
if (prefix) {
|
||||||
|
prefixSpan = <span key={word + i + z + 'pre_span'}>{prefix}</span>;
|
||||||
|
}
|
||||||
|
if (suffix) {
|
||||||
|
suffixSpan = <span key={word + i + z + 'suf_span'}>{suffix} </span>;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((trimWord.toLowerCase().indexOf(searchTerm) > -1 || word.toLowerCase().indexOf(searchTerm) > -1) && searchTerm !== '') {
|
||||||
|
highlightSearchClass = ' search-highlight';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (useTextFormatting && (codeFlag || word.indexOf('<code>') !== -1)) {
|
||||||
|
codeString += word + ' ';
|
||||||
|
codeFlag = true;
|
||||||
|
|
||||||
|
if (word.indexOf('</code>') !== -1) {
|
||||||
|
inner.push(<span key={word + i + z + '_span'} className={highlightSearchClass} dangerouslySetInnerHTML={{__html: codeString}} />);
|
||||||
|
codeString = '';
|
||||||
|
codeFlag = false;
|
||||||
|
}
|
||||||
|
} else if (explicitMention &&
|
||||||
|
(UserStore.getProfileByUsername(explicitMention[1]) ||
|
||||||
|
Constants.SPECIAL_MENTIONS.indexOf(explicitMention[1]) !== -1)) {
|
||||||
|
var name = explicitMention[1];
|
||||||
|
|
||||||
|
// do both a non-case sensitive and case senstive check
|
||||||
|
mClass = '';
|
||||||
|
if (implicitKeywords.indexOf('@' + name.toLowerCase()) !== -1 || implicitKeywords.indexOf('@' + name) !== -1) {
|
||||||
|
mClass = mentionClass;
|
||||||
|
}
|
||||||
|
|
||||||
if (searchTerm === name) {
|
if (searchTerm === name) {
|
||||||
highlightSearchClass = " search-highlight";
|
highlightSearchClass = ' search-highlight';
|
||||||
}
|
}
|
||||||
|
|
||||||
inner.push(<span key={name+i+z+"_span"}>{prefix}<a className={mClass + highlightSearchClass + " mention-link"} key={name+i+z+"_link"} href="#" onClick={function(value) { return function() { module.exports.searchForTerm(value); } }(name)}>@{name}</a>{suffix} </span>);
|
if (useTextFormatting) {
|
||||||
|
if (prefixSpan) {
|
||||||
|
inner.push(prefixSpan);
|
||||||
|
}
|
||||||
|
inner.push(<span key={word + i + z + 'word_span'}><a className={mClass + highlightSearchClass + ' mention-link'} key={name + i + z + '_link'} href='#' onClick={function(value) { return function() { module.exports.searchForTerm(value); } }(name)}>{'@' + name}</a></span>);
|
||||||
|
if (suffixSpan) {
|
||||||
|
inner.push(suffixSpan);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
inner.push(<span key={name + i + z + '_span'}>{prefix}<a className={mClass + highlightSearchClass + ' mention-link'} key={name + i + z + '_link'} href='#' onClick={function(value) { return function() { module.exports.searchForTerm(value); } }(name)}>@{name}</a>{suffix} </span>);
|
||||||
|
}
|
||||||
} else if (testUrlMatch(word).length) {
|
} else if (testUrlMatch(word).length) {
|
||||||
var match = testUrlMatch(word)[0];
|
var match = testUrlMatch(word)[0];
|
||||||
var link = match.link;
|
var link = match.link;
|
||||||
|
|
||||||
var prefix = word.substring(0,word.indexOf(match.text));
|
prefix = word.substring(0, word.indexOf(match.text));
|
||||||
var suffix = word.substring(word.indexOf(match.text)+match.text.length);
|
suffix = word.substring(word.indexOf(match.text) + match.text.length);
|
||||||
|
if (prefix) {
|
||||||
inner.push(<span key={word+i+z+"_span"}>{prefix}<a key={word+i+z+"_link"} className={"theme" + highlightSearchClass} target="_blank" href={link}>{match.text}</a>{suffix} </span>);
|
prefixSpan = <span key={word + i + z + 'pre_span'}><span dangerouslySetInnerHTML={{__html: prefix}} /></span>;
|
||||||
|
}
|
||||||
|
if (suffix) {
|
||||||
|
suffixSpan = <span key={word + i + z + 'suf_span'}><span dangerouslySetInnerHTML={{__html: suffix}} /> </span>;
|
||||||
|
} else {
|
||||||
|
suffixSpan = <span key={word + i + z + 'suf_span'}> </span>;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (useTextFormatting) {
|
||||||
|
if (prefixSpan) {
|
||||||
|
inner.push(prefixSpan);
|
||||||
|
}
|
||||||
|
inner.push(<span key={word + i + z + '_span'}><a key={name + i + z + '_link'} className={'theme' + highlightSearchClass} target='_blank' href={link}>{match.text}</a></span>);
|
||||||
|
if (suffixSpan) {
|
||||||
|
inner.push(suffixSpan);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
inner.push(<span key={word + i + z + '_span'}>{prefix}<a key={word + i + z + '_link'} className={'theme' + highlightSearchClass} target='_blank' href={link}>{match.text}</a>{suffix} </span>);
|
||||||
|
}
|
||||||
} else if (trimWord.match(hashRegex)) {
|
} else if (trimWord.match(hashRegex)) {
|
||||||
var suffix = word.match(puncEndRegex);
|
mClass = '';
|
||||||
var prefix = word.match(puncStartRegex);
|
if (implicitKeywords.indexOf(trimWord) !== -1 || implicitKeywords.indexOf(trimWord.toLowerCase()) !== -1) {
|
||||||
var mClass = implicitKeywords.indexOf(trimWord) !== -1 || implicitKeywords.indexOf(trimWord.toLowerCase()) !== -1 ? mentionClass : "";
|
mClass = mentionClass;
|
||||||
|
}
|
||||||
|
|
||||||
if (searchTerm === trimWord.substring(1).toLowerCase() || searchTerm === trimWord.toLowerCase()) {
|
if (searchTerm === trimWord.substring(1).toLowerCase() || searchTerm === trimWord.toLowerCase()) {
|
||||||
highlightSearchClass = " search-highlight";
|
highlightSearchClass = ' search-highlight';
|
||||||
}
|
}
|
||||||
|
|
||||||
inner.push(<span key={word+i+z+"_span"}>{prefix}<a key={word+i+z+"_hash"} className={"theme " + mClass + highlightSearchClass} href="#" onClick={function(value) { return function() { module.exports.searchForTerm(value); } }(trimWord)}>{trimWord}</a>{suffix} </span>);
|
if (useTextFormatting) {
|
||||||
|
if (prefixSpan) {
|
||||||
|
inner.push(prefixSpan);
|
||||||
|
}
|
||||||
|
inner.push(<span key={word + i + z + '_span'}><a key={word + i + z + '_hash'} className={'theme ' + mClass + highlightSearchClass} href='#' onClick={function(value) { return function() { module.exports.searchForTerm(value); } }(trimWord)}>{trimWord}</a></span>);
|
||||||
|
if (suffixSpan) {
|
||||||
|
inner.push(suffixSpan);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
inner.push(<span key={word + i + z + '_span'}>{prefix}<a key={word + i + z + '_hash'} className={'theme ' + mClass + highlightSearchClass} href='#' onClick={function(value) { return function() { module.exports.searchForTerm(value); } }(trimWord)}>{trimWord}</a>{suffix} </span>);
|
||||||
|
}
|
||||||
} else if (implicitKeywords.indexOf(trimWord) !== -1 || implicitKeywords.indexOf(trimWord.toLowerCase()) !== -1) {
|
} else if (implicitKeywords.indexOf(trimWord) !== -1 || implicitKeywords.indexOf(trimWord.toLowerCase()) !== -1) {
|
||||||
var suffix = word.match(puncEndRegex);
|
|
||||||
var prefix = word.match(puncStartRegex);
|
|
||||||
|
|
||||||
if (trimWord.charAt(0) === '@') {
|
if (trimWord.charAt(0) === '@') {
|
||||||
if (searchTerm === trimWord.substring(1).toLowerCase()) {
|
if (searchTerm === trimWord.substring(1).toLowerCase()) {
|
||||||
highlightSearchClass = " search-highlight";
|
highlightSearchClass = ' search-highlight';
|
||||||
|
}
|
||||||
|
if (useTextFormatting) {
|
||||||
|
if (prefixSpan) {
|
||||||
|
inner.push(prefixSpan);
|
||||||
|
}
|
||||||
|
inner.push(<span key={word + i + z + '_span'}><a className={mentionClass + highlightSearchClass} key={name + i + z + '_link'} href='#'>{trimWord}</a></span>);
|
||||||
|
if (suffixSpan) {
|
||||||
|
inner.push(suffixSpan);
|
||||||
}
|
}
|
||||||
inner.push(<span key={word+i+z+"_span"} key={name+i+z+"_span"}>{prefix}<a className={mentionClass + highlightSearchClass} key={name+i+z+"_link"} href="#">{trimWord}</a>{suffix} </span>);
|
|
||||||
} else {
|
} else {
|
||||||
inner.push(<span key={word+i+z+"_span"}>{prefix}<span className={mentionClass + highlightSearchClass}>{module.exports.replaceHtmlEntities(trimWord)}</span>{suffix} </span>);
|
inner.push(<span key={word + i + z + '_span'}>{prefix}<a className={mentionClass + highlightSearchClass} key={name + i + z + '_link'} href='#'>{trimWord}</a>{suffix} </span>);
|
||||||
|
}
|
||||||
|
} else if (useTextFormatting) {
|
||||||
|
if (prefixSpan) {
|
||||||
|
inner.push(prefixSpan);
|
||||||
|
}
|
||||||
|
inner.push(<span key={word + i + z + '_span'}><span className={mentionClass + highlightSearchClass}>{trimWord}</span></span>);
|
||||||
|
if (suffixSpan) {
|
||||||
|
inner.push(suffixSpan);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (word === "") {
|
|
||||||
// if word is empty dont include a span
|
|
||||||
} else {
|
} else {
|
||||||
inner.push(<span key={word+i+z+"_span"}><span className={highlightSearchClass}>{module.exports.replaceHtmlEntities(word)}</span> </span>);
|
inner.push(<span key={word + i + z + '_span'}>{prefix}<span className={mentionClass + highlightSearchClass}>{module.exports.replaceHtmlEntities(trimWord)}</span>{suffix} </span>);
|
||||||
}
|
}
|
||||||
highlightSearchClass = "";
|
} else if (word !== '') {
|
||||||
|
if (useTextFormatting) {
|
||||||
|
inner.push(<span key={word + i + z + '_span'} className={highlightSearchClass} dangerouslySetInnerHTML={{__html: word + ' '}} />);
|
||||||
|
} else {
|
||||||
|
inner.push(<span key={word + i + z + '_span'}><span className={highlightSearchClass}>{module.exports.replaceHtmlEntities(word)}</span> </span>);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
highlightSearchClass = '';
|
||||||
|
}
|
||||||
|
if (!useTextFormatting && i !== lines.length - 1) {
|
||||||
|
inner.push(<br key={'br_' + i}/>);
|
||||||
|
} else if (useTextFormatting && !codeFlag && i < lines.length - 2) {
|
||||||
|
inner.push(<br key={'br_' + i}/>);
|
||||||
}
|
}
|
||||||
if (i != lines.length-1)
|
|
||||||
inner.push(<br key={"br_"+i+z}/>);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return inner;
|
return inner;
|
||||||
}
|
};
|
||||||
|
|
||||||
module.exports.getFileType = function(ext) {
|
module.exports.getFileType = function(ext) {
|
||||||
ext = ext.toLowerCase();
|
ext = ext.toLowerCase();
|
||||||
|
|||||||
@@ -194,11 +194,19 @@ body.ios {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.msg-typing {
|
.msg-typing {
|
||||||
|
padding-bottom: 5px;
|
||||||
min-height: 20px;
|
min-height: 20px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: #777;
|
color: #777;
|
||||||
|
.code-info {
|
||||||
|
padding-left: 2px;
|
||||||
|
padding-right: 2px;
|
||||||
|
}
|
||||||
|
.preformatted-info {
|
||||||
|
background-color: #E3E8E3;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,6 +33,19 @@
|
|||||||
float: left;
|
float: left;
|
||||||
padding-top: 17px;
|
padding-top: 17px;
|
||||||
}
|
}
|
||||||
|
.msg-format-help {
|
||||||
|
min-height: 20px;
|
||||||
|
line-height: 18px;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 13px;
|
||||||
|
color: #555;
|
||||||
|
float: left;
|
||||||
|
padding-top: 17px;
|
||||||
|
.code-info {
|
||||||
|
padding-left: 1px;
|
||||||
|
padding-right: 1px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.post-create-footer {
|
.post-create-footer {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ var config = {
|
|||||||
AllowInviteNames: true,
|
AllowInviteNames: true,
|
||||||
RequireInviteNames: false,
|
RequireInviteNames: false,
|
||||||
AllowSignupDomainsWizard: false,
|
AllowSignupDomainsWizard: false,
|
||||||
|
AllowTextFormatting: true,
|
||||||
|
|
||||||
// Google Developer Key (for Youtube API links)
|
// Google Developer Key (for Youtube API links)
|
||||||
// Leave blank to disable
|
// Leave blank to disable
|
||||||
|
|||||||
19
web/static/js/marked/LICENSE
Обычный файл
19
web/static/js/marked/LICENSE
Обычный файл
@@ -0,0 +1,19 @@
|
|||||||
|
Copyright (c) 2011-2014, Christopher Jeffrey (https://github.com/chjj/)
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
12
web/static/js/marked/Makefile
Обычный файл
12
web/static/js/marked/Makefile
Обычный файл
@@ -0,0 +1,12 @@
|
|||||||
|
all:
|
||||||
|
@cp lib/marked.js marked.js
|
||||||
|
@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o marked.min.js lib/marked.js
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@rm marked.js
|
||||||
|
@rm marked.min.js
|
||||||
|
|
||||||
|
bench:
|
||||||
|
@node test --bench
|
||||||
|
|
||||||
|
.PHONY: clean all
|
||||||
406
web/static/js/marked/README.md
Обычный файл
406
web/static/js/marked/README.md
Обычный файл
@@ -0,0 +1,406 @@
|
|||||||
|
# marked
|
||||||
|
|
||||||
|
> A full-featured markdown parser and compiler, written in JavaScript. Built
|
||||||
|
> for speed.
|
||||||
|
|
||||||
|
[][badge]
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
npm install marked --save
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Minimal usage:
|
||||||
|
|
||||||
|
```js
|
||||||
|
var marked = require('marked');
|
||||||
|
console.log(marked('I am using __markdown__.'));
|
||||||
|
// Outputs: <p>I am using <strong>markdown</strong>.</p>
|
||||||
|
```
|
||||||
|
|
||||||
|
Example setting options with default values:
|
||||||
|
|
||||||
|
```js
|
||||||
|
var marked = require('marked');
|
||||||
|
marked.setOptions({
|
||||||
|
renderer: new marked.Renderer(),
|
||||||
|
gfm: true,
|
||||||
|
tables: true,
|
||||||
|
breaks: false,
|
||||||
|
pedantic: false,
|
||||||
|
sanitize: true,
|
||||||
|
smartLists: true,
|
||||||
|
smartypants: false
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(marked('I am using __markdown__.'));
|
||||||
|
```
|
||||||
|
|
||||||
|
### Browser
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!doctype html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<title>Marked in the browser</title>
|
||||||
|
<script src="lib/marked.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="content"></div>
|
||||||
|
<script>
|
||||||
|
document.getElementById('content').innerHTML =
|
||||||
|
marked('# Marked in browser\n\nRendered by **marked**.');
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
```
|
||||||
|
|
||||||
|
## marked(markdownString [,options] [,callback])
|
||||||
|
|
||||||
|
### markdownString
|
||||||
|
|
||||||
|
Type: `string`
|
||||||
|
|
||||||
|
String of markdown source to be compiled.
|
||||||
|
|
||||||
|
### options
|
||||||
|
|
||||||
|
Type: `object`
|
||||||
|
|
||||||
|
Hash of options. Can also be set using the `marked.setOptions` method as seen
|
||||||
|
above.
|
||||||
|
|
||||||
|
### callback
|
||||||
|
|
||||||
|
Type: `function`
|
||||||
|
|
||||||
|
Function called when the `markdownString` has been fully parsed when using
|
||||||
|
async highlighting. If the `options` argument is omitted, this can be used as
|
||||||
|
the second argument.
|
||||||
|
|
||||||
|
## Options
|
||||||
|
|
||||||
|
### highlight
|
||||||
|
|
||||||
|
Type: `function`
|
||||||
|
|
||||||
|
A function to highlight code blocks. The first example below uses async highlighting with
|
||||||
|
[node-pygmentize-bundled][pygmentize], and the second is a synchronous example using
|
||||||
|
[highlight.js][highlight]:
|
||||||
|
|
||||||
|
```js
|
||||||
|
var marked = require('marked');
|
||||||
|
|
||||||
|
var markdownString = '```js\n console.log("hello"); \n```';
|
||||||
|
|
||||||
|
// Async highlighting with pygmentize-bundled
|
||||||
|
marked.setOptions({
|
||||||
|
highlight: function (code, lang, callback) {
|
||||||
|
require('pygmentize-bundled')({ lang: lang, format: 'html' }, code, function (err, result) {
|
||||||
|
callback(err, result.toString());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Using async version of marked
|
||||||
|
marked(markdownString, function (err, content) {
|
||||||
|
if (err) throw err;
|
||||||
|
console.log(content);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Synchronous highlighting with highlight.js
|
||||||
|
marked.setOptions({
|
||||||
|
highlight: function (code) {
|
||||||
|
return require('highlight.js').highlightAuto(code).value;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
console.log(marked(markdownString));
|
||||||
|
```
|
||||||
|
|
||||||
|
#### highlight arguments
|
||||||
|
|
||||||
|
`code`
|
||||||
|
|
||||||
|
Type: `string`
|
||||||
|
|
||||||
|
The section of code to pass to the highlighter.
|
||||||
|
|
||||||
|
`lang`
|
||||||
|
|
||||||
|
Type: `string`
|
||||||
|
|
||||||
|
The programming language specified in the code block.
|
||||||
|
|
||||||
|
`callback`
|
||||||
|
|
||||||
|
Type: `function`
|
||||||
|
|
||||||
|
The callback function to call when using an async highlighter.
|
||||||
|
|
||||||
|
### renderer
|
||||||
|
|
||||||
|
Type: `object`
|
||||||
|
Default: `new Renderer()`
|
||||||
|
|
||||||
|
An object containing functions to render tokens to HTML.
|
||||||
|
|
||||||
|
#### Overriding renderer methods
|
||||||
|
|
||||||
|
The renderer option allows you to render tokens in a custom manner. Here is an
|
||||||
|
example of overriding the default heading token rendering by adding an embedded anchor tag like on GitHub:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
var marked = require('marked');
|
||||||
|
var renderer = new marked.Renderer();
|
||||||
|
|
||||||
|
renderer.heading = function (text, level) {
|
||||||
|
var escapedText = text.toLowerCase().replace(/[^\w]+/g, '-');
|
||||||
|
|
||||||
|
return '<h' + level + '><a name="' +
|
||||||
|
escapedText +
|
||||||
|
'" class="anchor" href="#' +
|
||||||
|
escapedText +
|
||||||
|
'"><span class="header-link"></span></a>' +
|
||||||
|
text + '</h' + level + '>';
|
||||||
|
},
|
||||||
|
|
||||||
|
console.log(marked('# heading+', { renderer: renderer }));
|
||||||
|
```
|
||||||
|
This code will output the following HTML:
|
||||||
|
```html
|
||||||
|
<h1>
|
||||||
|
<a name="heading-" class="anchor" href="#heading-">
|
||||||
|
<span class="header-link"></span>
|
||||||
|
</a>
|
||||||
|
heading+
|
||||||
|
</h1>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Block level renderer methods
|
||||||
|
|
||||||
|
- code(*string* code, *string* language)
|
||||||
|
- blockquote(*string* quote)
|
||||||
|
- html(*string* html)
|
||||||
|
- heading(*string* text, *number* level)
|
||||||
|
- hr()
|
||||||
|
- list(*string* body, *boolean* ordered)
|
||||||
|
- listitem(*string* text)
|
||||||
|
- paragraph(*string* text)
|
||||||
|
- table(*string* header, *string* body)
|
||||||
|
- tablerow(*string* content)
|
||||||
|
- tablecell(*string* content, *object* flags)
|
||||||
|
|
||||||
|
`flags` has the following properties:
|
||||||
|
|
||||||
|
```js
|
||||||
|
{
|
||||||
|
header: true || false,
|
||||||
|
align: 'center' || 'left' || 'right'
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Inline level renderer methods
|
||||||
|
|
||||||
|
- strong(*string* text)
|
||||||
|
- em(*string* text)
|
||||||
|
- codespan(*string* code)
|
||||||
|
- br()
|
||||||
|
- del(*string* text)
|
||||||
|
- link(*string* href, *string* title, *string* text)
|
||||||
|
- image(*string* href, *string* title, *string* text)
|
||||||
|
|
||||||
|
### gfm
|
||||||
|
|
||||||
|
Type: `boolean`
|
||||||
|
Default: `true`
|
||||||
|
|
||||||
|
Enable [GitHub flavored markdown][gfm].
|
||||||
|
|
||||||
|
### tables
|
||||||
|
|
||||||
|
Type: `boolean`
|
||||||
|
Default: `true`
|
||||||
|
|
||||||
|
Enable GFM [tables][tables].
|
||||||
|
This option requires the `gfm` option to be true.
|
||||||
|
|
||||||
|
### breaks
|
||||||
|
|
||||||
|
Type: `boolean`
|
||||||
|
Default: `false`
|
||||||
|
|
||||||
|
Enable GFM [line breaks][breaks].
|
||||||
|
This option requires the `gfm` option to be true.
|
||||||
|
|
||||||
|
### pedantic
|
||||||
|
|
||||||
|
Type: `boolean`
|
||||||
|
Default: `false`
|
||||||
|
|
||||||
|
Conform to obscure parts of `markdown.pl` as much as possible. Don't fix any of
|
||||||
|
the original markdown bugs or poor behavior.
|
||||||
|
|
||||||
|
### sanitize
|
||||||
|
|
||||||
|
Type: `boolean`
|
||||||
|
Default: `false`
|
||||||
|
|
||||||
|
Sanitize the output. Ignore any HTML that has been input.
|
||||||
|
|
||||||
|
### smartLists
|
||||||
|
|
||||||
|
Type: `boolean`
|
||||||
|
Default: `true`
|
||||||
|
|
||||||
|
Use smarter list behavior than the original markdown. May eventually be
|
||||||
|
default with the old behavior moved into `pedantic`.
|
||||||
|
|
||||||
|
### smartypants
|
||||||
|
|
||||||
|
Type: `boolean`
|
||||||
|
Default: `false`
|
||||||
|
|
||||||
|
Use "smart" typograhic punctuation for things like quotes and dashes.
|
||||||
|
|
||||||
|
## Access to lexer and parser
|
||||||
|
|
||||||
|
You also have direct access to the lexer and parser if you so desire.
|
||||||
|
|
||||||
|
``` js
|
||||||
|
var tokens = marked.lexer(text, options);
|
||||||
|
console.log(marked.parser(tokens));
|
||||||
|
```
|
||||||
|
|
||||||
|
``` js
|
||||||
|
var lexer = new marked.Lexer(options);
|
||||||
|
var tokens = lexer.lex(text);
|
||||||
|
console.log(tokens);
|
||||||
|
console.log(lexer.rules);
|
||||||
|
```
|
||||||
|
|
||||||
|
## CLI
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
$ marked -o hello.html
|
||||||
|
hello world
|
||||||
|
^D
|
||||||
|
$ cat hello.html
|
||||||
|
<p>hello world</p>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Philosophy behind marked
|
||||||
|
|
||||||
|
The point of marked was to create a markdown compiler where it was possible to
|
||||||
|
frequently parse huge chunks of markdown without having to worry about
|
||||||
|
caching the compiled output somehow...or blocking for an unnecesarily long time.
|
||||||
|
|
||||||
|
marked is very concise and still implements all markdown features. It is also
|
||||||
|
now fully compatible with the client-side.
|
||||||
|
|
||||||
|
marked more or less passes the official markdown test suite in its
|
||||||
|
entirety. This is important because a surprising number of markdown compilers
|
||||||
|
cannot pass more than a few tests. It was very difficult to get marked as
|
||||||
|
compliant as it is. It could have cut corners in several areas for the sake
|
||||||
|
of performance, but did not in order to be exactly what you expect in terms
|
||||||
|
of a markdown rendering. In fact, this is why marked could be considered at a
|
||||||
|
disadvantage in the benchmarks above.
|
||||||
|
|
||||||
|
Along with implementing every markdown feature, marked also implements [GFM
|
||||||
|
features][gfmf].
|
||||||
|
|
||||||
|
## Benchmarks
|
||||||
|
|
||||||
|
node v0.8.x
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
$ node test --bench
|
||||||
|
marked completed in 3411ms.
|
||||||
|
marked (gfm) completed in 3727ms.
|
||||||
|
marked (pedantic) completed in 3201ms.
|
||||||
|
robotskirt completed in 808ms.
|
||||||
|
showdown (reuse converter) completed in 11954ms.
|
||||||
|
showdown (new converter) completed in 17774ms.
|
||||||
|
markdown-js completed in 17191ms.
|
||||||
|
```
|
||||||
|
|
||||||
|
__Marked is now faster than Discount, which is written in C.__
|
||||||
|
|
||||||
|
For those feeling skeptical: These benchmarks run the entire markdown test suite 1000 times. The test suite tests every feature. It doesn't cater to specific aspects.
|
||||||
|
|
||||||
|
### Pro level
|
||||||
|
|
||||||
|
You also have direct access to the lexer and parser if you so desire.
|
||||||
|
|
||||||
|
``` js
|
||||||
|
var tokens = marked.lexer(text, options);
|
||||||
|
console.log(marked.parser(tokens));
|
||||||
|
```
|
||||||
|
|
||||||
|
``` js
|
||||||
|
var lexer = new marked.Lexer(options);
|
||||||
|
var tokens = lexer.lex(text);
|
||||||
|
console.log(tokens);
|
||||||
|
console.log(lexer.rules);
|
||||||
|
```
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
$ node
|
||||||
|
> require('marked').lexer('> i am using marked.')
|
||||||
|
[ { type: 'blockquote_start' },
|
||||||
|
{ type: 'paragraph',
|
||||||
|
text: 'i am using marked.' },
|
||||||
|
{ type: 'blockquote_end' },
|
||||||
|
links: {} ]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running Tests & Contributing
|
||||||
|
|
||||||
|
If you want to submit a pull request, make sure your changes pass the test
|
||||||
|
suite. If you're adding a new feature, be sure to add your own test.
|
||||||
|
|
||||||
|
The marked test suite is set up slightly strangely: `test/new` is for all tests
|
||||||
|
that are not part of the original markdown.pl test suite (this is where your
|
||||||
|
test should go if you make one). `test/original` is only for the original
|
||||||
|
markdown.pl tests. `test/tests` houses both types of tests after they have been
|
||||||
|
combined and moved/generated by running `node test --fix` or `marked --test
|
||||||
|
--fix`.
|
||||||
|
|
||||||
|
In other words, if you have a test to add, add it to `test/new/` and then
|
||||||
|
regenerate the tests with `node test --fix`. Commit the result. If your test
|
||||||
|
uses a certain feature, for example, maybe it assumes GFM is *not* enabled, you
|
||||||
|
can add `.nogfm` to the filename. So, `my-test.text` becomes
|
||||||
|
`my-test.nogfm.text`. You can do this with any marked option. Say you want
|
||||||
|
line breaks and smartypants enabled, your filename should be:
|
||||||
|
`my-test.breaks.smartypants.text`.
|
||||||
|
|
||||||
|
To run the tests:
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
cd marked/
|
||||||
|
node test
|
||||||
|
```
|
||||||
|
|
||||||
|
### Contribution and License Agreement
|
||||||
|
|
||||||
|
If you contribute code to this project, you are implicitly allowing your code
|
||||||
|
to be distributed under the MIT license. You are also implicitly verifying that
|
||||||
|
all code is your original work. `</legalese>`
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Copyright (c) 2011-2014, Christopher Jeffrey. (MIT License)
|
||||||
|
|
||||||
|
See LICENSE for more info.
|
||||||
|
|
||||||
|
[gfm]: https://help.github.com/articles/github-flavored-markdown
|
||||||
|
[gfmf]: http://github.github.com/github-flavored-markdown/
|
||||||
|
[pygmentize]: https://github.com/rvagg/node-pygmentize-bundled
|
||||||
|
[highlight]: https://github.com/isagalaev/highlight.js
|
||||||
|
[badge]: http://badge.fury.io/js/marked
|
||||||
|
[tables]: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#wiki-tables
|
||||||
|
[breaks]: https://help.github.com/articles/github-flavored-markdown#newlines
|
||||||
187
web/static/js/marked/bin/marked
Исполняемый файл
187
web/static/js/marked/bin/marked
Исполняемый файл
@@ -0,0 +1,187 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Marked CLI
|
||||||
|
* Copyright (c) 2011-2013, Christopher Jeffrey (MIT License)
|
||||||
|
*/
|
||||||
|
|
||||||
|
var fs = require('fs')
|
||||||
|
, util = require('util')
|
||||||
|
, marked = require('../');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Man Page
|
||||||
|
*/
|
||||||
|
|
||||||
|
function help() {
|
||||||
|
var spawn = require('child_process').spawn;
|
||||||
|
|
||||||
|
var options = {
|
||||||
|
cwd: process.cwd(),
|
||||||
|
env: process.env,
|
||||||
|
setsid: false,
|
||||||
|
customFds: [0, 1, 2]
|
||||||
|
};
|
||||||
|
|
||||||
|
spawn('man',
|
||||||
|
[__dirname + '/../man/marked.1'],
|
||||||
|
options);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Main
|
||||||
|
*/
|
||||||
|
|
||||||
|
function main(argv, callback) {
|
||||||
|
var files = []
|
||||||
|
, options = {}
|
||||||
|
, input
|
||||||
|
, output
|
||||||
|
, arg
|
||||||
|
, tokens
|
||||||
|
, opt;
|
||||||
|
|
||||||
|
function getarg() {
|
||||||
|
var arg = argv.shift();
|
||||||
|
|
||||||
|
if (arg.indexOf('--') === 0) {
|
||||||
|
// e.g. --opt
|
||||||
|
arg = arg.split('=');
|
||||||
|
if (arg.length > 1) {
|
||||||
|
// e.g. --opt=val
|
||||||
|
argv.unshift(arg.slice(1).join('='));
|
||||||
|
}
|
||||||
|
arg = arg[0];
|
||||||
|
} else if (arg[0] === '-') {
|
||||||
|
if (arg.length > 2) {
|
||||||
|
// e.g. -abc
|
||||||
|
argv = arg.substring(1).split('').map(function(ch) {
|
||||||
|
return '-' + ch;
|
||||||
|
}).concat(argv);
|
||||||
|
arg = argv.shift();
|
||||||
|
} else {
|
||||||
|
// e.g. -a
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// e.g. foo
|
||||||
|
}
|
||||||
|
|
||||||
|
return arg;
|
||||||
|
}
|
||||||
|
|
||||||
|
while (argv.length) {
|
||||||
|
arg = getarg();
|
||||||
|
switch (arg) {
|
||||||
|
case '--test':
|
||||||
|
return require('../test').main(process.argv.slice());
|
||||||
|
case '-o':
|
||||||
|
case '--output':
|
||||||
|
output = argv.shift();
|
||||||
|
break;
|
||||||
|
case '-i':
|
||||||
|
case '--input':
|
||||||
|
input = argv.shift();
|
||||||
|
break;
|
||||||
|
case '-t':
|
||||||
|
case '--tokens':
|
||||||
|
tokens = true;
|
||||||
|
break;
|
||||||
|
case '-h':
|
||||||
|
case '--help':
|
||||||
|
return help();
|
||||||
|
default:
|
||||||
|
if (arg.indexOf('--') === 0) {
|
||||||
|
opt = camelize(arg.replace(/^--(no-)?/, ''));
|
||||||
|
if (!marked.defaults.hasOwnProperty(opt)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (arg.indexOf('--no-') === 0) {
|
||||||
|
options[opt] = typeof marked.defaults[opt] !== 'boolean'
|
||||||
|
? null
|
||||||
|
: false;
|
||||||
|
} else {
|
||||||
|
options[opt] = typeof marked.defaults[opt] !== 'boolean'
|
||||||
|
? argv.shift()
|
||||||
|
: true;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
files.push(arg);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function getData(callback) {
|
||||||
|
if (!input) {
|
||||||
|
if (files.length <= 2) {
|
||||||
|
return getStdin(callback);
|
||||||
|
}
|
||||||
|
input = files.pop();
|
||||||
|
}
|
||||||
|
return fs.readFile(input, 'utf8', callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
return getData(function(err, data) {
|
||||||
|
if (err) return callback(err);
|
||||||
|
|
||||||
|
data = tokens
|
||||||
|
? JSON.stringify(marked.lexer(data, options), null, 2)
|
||||||
|
: marked(data, options);
|
||||||
|
|
||||||
|
if (!output) {
|
||||||
|
process.stdout.write(data + '\n');
|
||||||
|
return callback();
|
||||||
|
}
|
||||||
|
|
||||||
|
return fs.writeFile(output, data, callback);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
|
function getStdin(callback) {
|
||||||
|
var stdin = process.stdin
|
||||||
|
, buff = '';
|
||||||
|
|
||||||
|
stdin.setEncoding('utf8');
|
||||||
|
|
||||||
|
stdin.on('data', function(data) {
|
||||||
|
buff += data;
|
||||||
|
});
|
||||||
|
|
||||||
|
stdin.on('error', function(err) {
|
||||||
|
return callback(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
stdin.on('end', function() {
|
||||||
|
return callback(null, buff);
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
stdin.resume();
|
||||||
|
} catch (e) {
|
||||||
|
callback(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function camelize(text) {
|
||||||
|
return text.replace(/(\w)-(\w)/g, function(_, a, b) {
|
||||||
|
return a + b.toUpperCase();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expose / Entry Point
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!module.parent) {
|
||||||
|
process.title = 'marked';
|
||||||
|
main(process.argv.slice(), function(err, code) {
|
||||||
|
if (err) throw err;
|
||||||
|
return process.exit(code || 0);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
module.exports = main;
|
||||||
|
}
|
||||||
980
web/static/js/marked/lib/marked.js
Обычный файл
980
web/static/js/marked/lib/marked.js
Обычный файл
@@ -0,0 +1,980 @@
|
|||||||
|
/**
|
||||||
|
* marked - a markdown parser
|
||||||
|
* Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
|
||||||
|
* https://github.com/chjj/marked
|
||||||
|
*/
|
||||||
|
|
||||||
|
;(function() {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Block-Level Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
var block = {
|
||||||
|
newline: /^\n+/,
|
||||||
|
code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
|
||||||
|
fences: noop,
|
||||||
|
hr: /^( *[-*_]){3,} *(?:\n+|$)/,
|
||||||
|
heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
|
||||||
|
nptable: noop,
|
||||||
|
lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
|
||||||
|
blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
|
||||||
|
list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
|
||||||
|
html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
|
||||||
|
def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
|
||||||
|
table: noop,
|
||||||
|
paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
|
||||||
|
text: /^[^\n]+/
|
||||||
|
};
|
||||||
|
|
||||||
|
block.bullet = /(?:[*+-]|\d+\.)/;
|
||||||
|
block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
|
||||||
|
block.item = replace(block.item, 'gm')
|
||||||
|
(/bull/g, block.bullet)
|
||||||
|
();
|
||||||
|
|
||||||
|
block.list = replace(block.list)
|
||||||
|
(/bull/g, block.bullet)
|
||||||
|
('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
|
||||||
|
('def', '\\n+(?=' + block.def.source + ')')
|
||||||
|
();
|
||||||
|
|
||||||
|
block.blockquote = replace(block.blockquote)
|
||||||
|
('def', block.def)
|
||||||
|
();
|
||||||
|
|
||||||
|
block._tag = '(?!(?:'
|
||||||
|
+ 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
|
||||||
|
+ '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
|
||||||
|
+ '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
|
||||||
|
|
||||||
|
block.html = replace(block.html)
|
||||||
|
('comment', /<!--[\s\S]*?-->/)
|
||||||
|
('closed', /<(tag)[\s\S]+?<\/\1>/)
|
||||||
|
('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
|
||||||
|
(/tag/g, block._tag)
|
||||||
|
();
|
||||||
|
|
||||||
|
block.paragraph = replace(block.paragraph)
|
||||||
|
('hr', block.hr)
|
||||||
|
('heading', block.heading)
|
||||||
|
('lheading', block.lheading)
|
||||||
|
('blockquote', block.blockquote)
|
||||||
|
('tag', '<' + block._tag)
|
||||||
|
('def', block.def)
|
||||||
|
();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Normal Block Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
block.normal = merge({}, block);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GFM Block Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
block.gfm = merge({}, block.normal, {
|
||||||
|
fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
|
||||||
|
paragraph: /^/,
|
||||||
|
heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
|
||||||
|
});
|
||||||
|
|
||||||
|
block.gfm.paragraph = replace(block.paragraph)
|
||||||
|
('(?!', '(?!'
|
||||||
|
+ block.gfm.fences.source.replace('\\1', '\\2') + '|'
|
||||||
|
+ block.list.source.replace('\\1', '\\3') + '|')
|
||||||
|
();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GFM + Tables Block Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
block.tables = merge({}, block.gfm, {
|
||||||
|
nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
|
||||||
|
table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Block Lexer
|
||||||
|
*/
|
||||||
|
|
||||||
|
function Lexer(options) {
|
||||||
|
this.tokens = [];
|
||||||
|
this.tokens.links = {};
|
||||||
|
this.options = options || marked.defaults;
|
||||||
|
this.rules = block.normal;
|
||||||
|
|
||||||
|
if (this.options.gfm) {
|
||||||
|
if (this.options.tables) {
|
||||||
|
this.rules = block.tables;
|
||||||
|
} else {
|
||||||
|
this.rules = block.gfm;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expose Block Rules
|
||||||
|
*/
|
||||||
|
|
||||||
|
Lexer.rules = block;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Static Lex Method
|
||||||
|
*/
|
||||||
|
|
||||||
|
Lexer.lex = function(src, options) {
|
||||||
|
var lexer = new Lexer(options);
|
||||||
|
return lexer.lex(src);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Preprocessing
|
||||||
|
*/
|
||||||
|
|
||||||
|
Lexer.prototype.lex = function(src) {
|
||||||
|
src = src
|
||||||
|
.replace(/\r\n|\r/g, '\n')
|
||||||
|
.replace(/\t/g, ' ')
|
||||||
|
.replace(/\u00a0/g, ' ')
|
||||||
|
.replace(/\u2424/g, '\n');
|
||||||
|
|
||||||
|
return this.token(src, true);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lexing
|
||||||
|
*/
|
||||||
|
|
||||||
|
Lexer.prototype.token = function(src, top, bq) {
|
||||||
|
var src = src.replace(/^ +$/gm, '')
|
||||||
|
, next
|
||||||
|
, loose
|
||||||
|
, cap
|
||||||
|
, bull
|
||||||
|
, b
|
||||||
|
, item
|
||||||
|
, space
|
||||||
|
, i
|
||||||
|
, l;
|
||||||
|
|
||||||
|
while (src) {
|
||||||
|
// newline
|
||||||
|
if (cap = this.rules.newline.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
if (cap[0].length > 1) {
|
||||||
|
this.tokens.push({
|
||||||
|
type: 'space'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// def
|
||||||
|
if ((!bq && top) && (cap = this.rules.def.exec(src))) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
this.tokens.links[cap[1].toLowerCase()] = {
|
||||||
|
href: cap[2],
|
||||||
|
title: cap[3]
|
||||||
|
};
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// html
|
||||||
|
if (cap = this.rules.html.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
this.tokens.push({
|
||||||
|
type: this.options.sanitize
|
||||||
|
? 'paragraph'
|
||||||
|
: 'html',
|
||||||
|
pre: !this.options.sanitizer
|
||||||
|
&& (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
|
||||||
|
text: cap[0]
|
||||||
|
});
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// text
|
||||||
|
if (cap = this.rules.text.exec(src)) {
|
||||||
|
// Top-level should never reach here.
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
this.tokens.push({
|
||||||
|
type: 'text',
|
||||||
|
text: cap[0]
|
||||||
|
});
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (src) {
|
||||||
|
throw new
|
||||||
|
Error('Infinite loop on byte: ' + src.charCodeAt(0));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.tokens;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inline-Level Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
var inline = {
|
||||||
|
escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
|
||||||
|
autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
|
||||||
|
url: noop,
|
||||||
|
tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
|
||||||
|
link: /^!?\[(inside)\]\(href\)/,
|
||||||
|
reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
|
||||||
|
nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
|
||||||
|
strong: /^(\*{1})\s*([^\r?\n|\r]*?[^\*])\s*\1(?!\*)/,
|
||||||
|
em: /^(_{1})\s*([^\r?\n|\r]*?[^_])\s*\1(?!_)/,
|
||||||
|
code: /^(`{1})\s*([^\r?\n|\r]*?[^`])\s*\1(?!`)/,
|
||||||
|
br: /^ {2,}\n(?!\s*$)/,
|
||||||
|
del: noop,
|
||||||
|
text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
|
||||||
|
};
|
||||||
|
|
||||||
|
inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
|
||||||
|
inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
|
||||||
|
|
||||||
|
inline.link = replace(inline.link)
|
||||||
|
('inside', inline._inside)
|
||||||
|
('href', inline._href)
|
||||||
|
();
|
||||||
|
|
||||||
|
inline.reflink = replace(inline.reflink)
|
||||||
|
('inside', inline._inside)
|
||||||
|
();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Normal Inline Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
inline.normal = merge({}, inline);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pedantic Inline Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
inline.pedantic = merge({}, inline.normal, {
|
||||||
|
strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
|
||||||
|
em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GFM Inline Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
inline.gfm = merge({}, inline.normal, {
|
||||||
|
escape: replace(inline.escape)('])', '~|])')(),
|
||||||
|
url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
|
||||||
|
del: /^~(?=\S)([\s\S]*?\S)~/,
|
||||||
|
text: replace(inline.text)
|
||||||
|
(']|', '~]|')
|
||||||
|
('|', '|https?://|')
|
||||||
|
()
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GFM + Line Breaks Inline Grammar
|
||||||
|
*/
|
||||||
|
|
||||||
|
inline.breaks = merge({}, inline.gfm, {
|
||||||
|
br: replace(inline.br)('{2,}', '*')(),
|
||||||
|
text: replace(inline.gfm.text)('{2,}', '*')()
|
||||||
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inline Lexer & Compiler
|
||||||
|
*/
|
||||||
|
|
||||||
|
function InlineLexer(links, options) {
|
||||||
|
this.options = options || marked.defaults;
|
||||||
|
this.links = links;
|
||||||
|
this.rules = inline.normal;
|
||||||
|
this.renderer = this.options.renderer || new Renderer;
|
||||||
|
this.renderer.options = this.options;
|
||||||
|
|
||||||
|
if (!this.links) {
|
||||||
|
throw new
|
||||||
|
Error('Tokens array requires a `links` property.');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.options.gfm) {
|
||||||
|
if (this.options.breaks) {
|
||||||
|
this.rules = inline.breaks;
|
||||||
|
} else {
|
||||||
|
this.rules = inline.gfm;
|
||||||
|
}
|
||||||
|
} else if (this.options.pedantic) {
|
||||||
|
this.rules = inline.pedantic;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expose Inline Rules
|
||||||
|
*/
|
||||||
|
|
||||||
|
InlineLexer.rules = inline;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Static Lexing/Compiling Method
|
||||||
|
*/
|
||||||
|
|
||||||
|
InlineLexer.output = function(src, links, options) {
|
||||||
|
var inline = new InlineLexer(links, options);
|
||||||
|
return inline.output(src);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lexing/Compiling
|
||||||
|
*/
|
||||||
|
|
||||||
|
InlineLexer.prototype.output = function(src) {
|
||||||
|
var out = ''
|
||||||
|
, link
|
||||||
|
, text
|
||||||
|
, href
|
||||||
|
, cap;
|
||||||
|
|
||||||
|
while (src) {
|
||||||
|
// escape
|
||||||
|
if (cap = this.rules.escape.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
out += cap[1];
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// autolink
|
||||||
|
if (cap = this.rules.autolink.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
if (cap[2] === '@') {
|
||||||
|
text = cap[1].charAt(6) === ':'
|
||||||
|
? this.mangle(cap[1].substring(7))
|
||||||
|
: this.mangle(cap[1]);
|
||||||
|
href = text;
|
||||||
|
} else {
|
||||||
|
text = escape(cap[1]);
|
||||||
|
href = text;
|
||||||
|
}
|
||||||
|
out += this.renderer.link(href, null, text);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// strong
|
||||||
|
if (cap = this.rules.strong.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
out += this.renderer.strong(this.output(cap[2] || cap[1]));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// em
|
||||||
|
if (cap = this.rules.em.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
out += this.renderer.em(this.output(cap[2] || cap[1]));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// code
|
||||||
|
if (cap = this.rules.code.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
out += this.renderer.codespan(escape(cap[2], true));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// text
|
||||||
|
if (cap = this.rules.text.exec(src)) {
|
||||||
|
src = src.substring(cap[0].length);
|
||||||
|
out += this.renderer.text(escape(this.smartypants(cap[0])));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (src) {
|
||||||
|
throw new
|
||||||
|
Error('Infinite loop on byte: ' + src.charCodeAt(0));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return out;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compile Link
|
||||||
|
*/
|
||||||
|
|
||||||
|
InlineLexer.prototype.outputLink = function(cap, link) {
|
||||||
|
var href = escape(link.href)
|
||||||
|
, title = link.title ? escape(link.title) : null;
|
||||||
|
|
||||||
|
return cap[0].charAt(0) !== '!'
|
||||||
|
? this.renderer.link(href, title, this.output(cap[1]))
|
||||||
|
: this.renderer.image(href, title, escape(cap[1]));
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Smartypants Transformations
|
||||||
|
*/
|
||||||
|
|
||||||
|
InlineLexer.prototype.smartypants = function(text) {
|
||||||
|
if (!this.options.smartypants) return text;
|
||||||
|
return text
|
||||||
|
// em-dashes
|
||||||
|
.replace(/---/g, '\u2014')
|
||||||
|
// en-dashes
|
||||||
|
.replace(/--/g, '\u2013')
|
||||||
|
// opening singles
|
||||||
|
.replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
|
||||||
|
// closing singles & apostrophes
|
||||||
|
.replace(/'/g, '\u2019')
|
||||||
|
// opening doubles
|
||||||
|
.replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
|
||||||
|
// closing doubles
|
||||||
|
.replace(/"/g, '\u201d')
|
||||||
|
// ellipses
|
||||||
|
.replace(/\.{3}/g, '\u2026');
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mangle Links
|
||||||
|
*/
|
||||||
|
|
||||||
|
InlineLexer.prototype.mangle = function(text) {
|
||||||
|
if (!this.options.mangle) return text;
|
||||||
|
var out = ''
|
||||||
|
, l = text.length
|
||||||
|
, i = 0
|
||||||
|
, ch;
|
||||||
|
|
||||||
|
for (; i < l; i++) {
|
||||||
|
ch = text.charCodeAt(i);
|
||||||
|
if (Math.random() > 0.5) {
|
||||||
|
ch = 'x' + ch.toString(16);
|
||||||
|
}
|
||||||
|
out += '&#' + ch + ';';
|
||||||
|
}
|
||||||
|
|
||||||
|
return out;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renderer
|
||||||
|
*/
|
||||||
|
|
||||||
|
function Renderer(options) {
|
||||||
|
this.options = options || {};
|
||||||
|
}
|
||||||
|
|
||||||
|
Renderer.prototype.code = function(code, lang, escaped) {
|
||||||
|
if (!lang) {
|
||||||
|
return '<pre><code>'
|
||||||
|
+ (escaped ? code : escape(code, true))
|
||||||
|
+ '\n</code></pre>';
|
||||||
|
}
|
||||||
|
|
||||||
|
return '<pre><code class="'
|
||||||
|
+ this.options.langPrefix
|
||||||
|
+ escape(lang, true)
|
||||||
|
+ '">'
|
||||||
|
+ (escaped ? code : escape(code, true))
|
||||||
|
+ '\n</code></pre>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.blockquote = function(quote) {
|
||||||
|
return '<blockquote>\n' + quote + '</blockquote>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.html = function(html) {
|
||||||
|
return html;
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.heading = function(text, level, raw) {
|
||||||
|
return '<h'
|
||||||
|
+ level
|
||||||
|
+ ' id="'
|
||||||
|
+ this.options.headerPrefix
|
||||||
|
+ raw.toLowerCase().replace(/[^\w]+/g, '-')
|
||||||
|
+ '">'
|
||||||
|
+ text
|
||||||
|
+ '</h'
|
||||||
|
+ level
|
||||||
|
+ '>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.hr = function() {
|
||||||
|
return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.list = function(body, ordered) {
|
||||||
|
var type = ordered ? 'ol' : 'ul';
|
||||||
|
return '<' + type + '>\n' + body + '</' + type + '>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.listitem = function(text) {
|
||||||
|
return '<li>' + text + '</li>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.paragraph = function(text) {
|
||||||
|
return '<p>' + text + '</p>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.table = function(header, body) {
|
||||||
|
return '<table>\n'
|
||||||
|
+ '<thead>\n'
|
||||||
|
+ header
|
||||||
|
+ '</thead>\n'
|
||||||
|
+ '<tbody>\n'
|
||||||
|
+ body
|
||||||
|
+ '</tbody>\n'
|
||||||
|
+ '</table>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.tablerow = function(content) {
|
||||||
|
return '<tr>\n' + content + '</tr>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.tablecell = function(content, flags) {
|
||||||
|
var type = flags.header ? 'th' : 'td';
|
||||||
|
var tag = flags.align
|
||||||
|
? '<' + type + ' style="text-align:' + flags.align + '">'
|
||||||
|
: '<' + type + '>';
|
||||||
|
return tag + content + '</' + type + '>\n';
|
||||||
|
};
|
||||||
|
|
||||||
|
// span level renderer
|
||||||
|
Renderer.prototype.strong = function(text) {
|
||||||
|
return '<strong>' + text + '</strong>';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.em = function(text) {
|
||||||
|
return '<em>' + text + '</em>';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.codespan = function(text) {
|
||||||
|
return '<code>' + text + '</code>';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.br = function() {
|
||||||
|
return this.options.xhtml ? '<br/>' : '<br>';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.del = function(text) {
|
||||||
|
return '<del>' + text + '</del>';
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.link = function(href, title, text) {
|
||||||
|
if (this.options.sanitize) {
|
||||||
|
try {
|
||||||
|
var prot = decodeURIComponent(unescape(href))
|
||||||
|
.replace(/[^\w:]/g, '')
|
||||||
|
.toLowerCase();
|
||||||
|
} catch (e) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var out = '<a href="' + href + '"';
|
||||||
|
if (title) {
|
||||||
|
out += ' title="' + title + '"';
|
||||||
|
}
|
||||||
|
out += '>' + text + '</a>';
|
||||||
|
return out;
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.image = function(href, title, text) {
|
||||||
|
var out = '<img src="' + href + '" alt="' + text + '"';
|
||||||
|
if (title) {
|
||||||
|
out += ' title="' + title + '"';
|
||||||
|
}
|
||||||
|
out += this.options.xhtml ? '/>' : '>';
|
||||||
|
return out;
|
||||||
|
};
|
||||||
|
|
||||||
|
Renderer.prototype.text = function(text) {
|
||||||
|
return text;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parsing & Compiling
|
||||||
|
*/
|
||||||
|
|
||||||
|
function Parser(options) {
|
||||||
|
this.tokens = [];
|
||||||
|
this.token = null;
|
||||||
|
this.options = options || marked.defaults;
|
||||||
|
this.options.renderer = this.options.renderer || new Renderer;
|
||||||
|
this.renderer = this.options.renderer;
|
||||||
|
this.renderer.options = this.options;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Static Parse Method
|
||||||
|
*/
|
||||||
|
|
||||||
|
Parser.parse = function(src, options, renderer) {
|
||||||
|
var parser = new Parser(options, renderer);
|
||||||
|
return parser.parse(src);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse Loop
|
||||||
|
*/
|
||||||
|
|
||||||
|
Parser.prototype.parse = function(src) {
|
||||||
|
this.inline = new InlineLexer(src.links, this.options, this.renderer);
|
||||||
|
this.tokens = src.reverse();
|
||||||
|
|
||||||
|
var out = '';
|
||||||
|
while (this.next()) {
|
||||||
|
out += this.tok();
|
||||||
|
}
|
||||||
|
|
||||||
|
return out;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Next Token
|
||||||
|
*/
|
||||||
|
|
||||||
|
Parser.prototype.next = function() {
|
||||||
|
return this.token = this.tokens.pop();
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Preview Next Token
|
||||||
|
*/
|
||||||
|
|
||||||
|
Parser.prototype.peek = function() {
|
||||||
|
return this.tokens[this.tokens.length - 1] || 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse Text Tokens
|
||||||
|
*/
|
||||||
|
|
||||||
|
Parser.prototype.parseText = function() {
|
||||||
|
var body = this.token.text;
|
||||||
|
|
||||||
|
while (this.peek().type === 'text') {
|
||||||
|
body += '\n' + this.next().text;
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.inline.output(body);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Parse Current Token
|
||||||
|
*/
|
||||||
|
|
||||||
|
Parser.prototype.tok = function() {
|
||||||
|
switch (this.token.type) {
|
||||||
|
case 'space': {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
case 'hr': {
|
||||||
|
return this.renderer.hr();
|
||||||
|
}
|
||||||
|
case 'heading': {
|
||||||
|
return this.renderer.heading(
|
||||||
|
this.inline.output(this.token.text),
|
||||||
|
this.token.depth,
|
||||||
|
this.token.text);
|
||||||
|
}
|
||||||
|
case 'code': {
|
||||||
|
return this.renderer.code(this.token.text,
|
||||||
|
this.token.lang,
|
||||||
|
this.token.escaped);
|
||||||
|
}
|
||||||
|
case 'table': {
|
||||||
|
var header = ''
|
||||||
|
, body = ''
|
||||||
|
, i
|
||||||
|
, row
|
||||||
|
, cell
|
||||||
|
, flags
|
||||||
|
, j;
|
||||||
|
|
||||||
|
// header
|
||||||
|
cell = '';
|
||||||
|
for (i = 0; i < this.token.header.length; i++) {
|
||||||
|
flags = { header: true, align: this.token.align[i] };
|
||||||
|
cell += this.renderer.tablecell(
|
||||||
|
this.inline.output(this.token.header[i]),
|
||||||
|
{ header: true, align: this.token.align[i] }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
header += this.renderer.tablerow(cell);
|
||||||
|
|
||||||
|
for (i = 0; i < this.token.cells.length; i++) {
|
||||||
|
row = this.token.cells[i];
|
||||||
|
|
||||||
|
cell = '';
|
||||||
|
for (j = 0; j < row.length; j++) {
|
||||||
|
cell += this.renderer.tablecell(
|
||||||
|
this.inline.output(row[j]),
|
||||||
|
{ header: false, align: this.token.align[j] }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
body += this.renderer.tablerow(cell);
|
||||||
|
}
|
||||||
|
return this.renderer.table(header, body);
|
||||||
|
}
|
||||||
|
case 'blockquote_start': {
|
||||||
|
var body = '';
|
||||||
|
|
||||||
|
while (this.next().type !== 'blockquote_end') {
|
||||||
|
body += this.tok();
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.renderer.blockquote(body);
|
||||||
|
}
|
||||||
|
case 'list_start': {
|
||||||
|
var body = ''
|
||||||
|
, ordered = this.token.ordered;
|
||||||
|
|
||||||
|
while (this.next().type !== 'list_end') {
|
||||||
|
body += this.tok();
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.renderer.list(body, ordered);
|
||||||
|
}
|
||||||
|
case 'list_item_start': {
|
||||||
|
var body = '';
|
||||||
|
|
||||||
|
while (this.next().type !== 'list_item_end') {
|
||||||
|
body += this.token.type === 'text'
|
||||||
|
? this.parseText()
|
||||||
|
: this.tok();
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.renderer.listitem(body);
|
||||||
|
}
|
||||||
|
case 'loose_item_start': {
|
||||||
|
var body = '';
|
||||||
|
|
||||||
|
while (this.next().type !== 'list_item_end') {
|
||||||
|
body += this.tok();
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.renderer.listitem(body);
|
||||||
|
}
|
||||||
|
case 'html': {
|
||||||
|
var html = !this.token.pre && !this.options.pedantic
|
||||||
|
? this.inline.output(this.token.text)
|
||||||
|
: this.token.text;
|
||||||
|
return this.renderer.html(html);
|
||||||
|
}
|
||||||
|
case 'paragraph': {
|
||||||
|
return this.renderer.paragraph(this.inline.output(this.token.text));
|
||||||
|
}
|
||||||
|
case 'text': {
|
||||||
|
return this.renderer.paragraph(this.parseText());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helpers
|
||||||
|
*/
|
||||||
|
|
||||||
|
function escape(html, encode) {
|
||||||
|
return html
|
||||||
|
.replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&')
|
||||||
|
.replace(/</g, '<')
|
||||||
|
.replace(/>/g, '>')
|
||||||
|
.replace(/"/g, '"')
|
||||||
|
.replace(/'/g, ''');
|
||||||
|
}
|
||||||
|
|
||||||
|
function unescape(html) {
|
||||||
|
return html.replace(/&([#\w]+);/g, function(_, n) {
|
||||||
|
n = n.toLowerCase();
|
||||||
|
if (n === 'colon') return ':';
|
||||||
|
if (n.charAt(0) === '#') {
|
||||||
|
return n.charAt(1) === 'x'
|
||||||
|
? String.fromCharCode(parseInt(n.substring(2), 16))
|
||||||
|
: String.fromCharCode(+n.substring(1));
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function replace(regex, opt) {
|
||||||
|
regex = regex.source;
|
||||||
|
opt = opt || '';
|
||||||
|
return function self(name, val) {
|
||||||
|
if (!name) return new RegExp(regex, opt);
|
||||||
|
val = val.source || val;
|
||||||
|
val = val.replace(/(^|[^\[])\^/g, '$1');
|
||||||
|
regex = regex.replace(name, val);
|
||||||
|
return self;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function noop() {}
|
||||||
|
noop.exec = noop;
|
||||||
|
|
||||||
|
function merge(obj) {
|
||||||
|
var i = 1
|
||||||
|
, target
|
||||||
|
, key;
|
||||||
|
|
||||||
|
for (; i < arguments.length; i++) {
|
||||||
|
target = arguments[i];
|
||||||
|
for (key in target) {
|
||||||
|
if (Object.prototype.hasOwnProperty.call(target, key)) {
|
||||||
|
obj[key] = target[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Marked
|
||||||
|
*/
|
||||||
|
|
||||||
|
function marked(src, opt, callback) {
|
||||||
|
if (callback || typeof opt === 'function') {
|
||||||
|
if (!callback) {
|
||||||
|
callback = opt;
|
||||||
|
opt = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
opt = merge({}, marked.defaults, opt || {});
|
||||||
|
|
||||||
|
var highlight = opt.highlight
|
||||||
|
, tokens
|
||||||
|
, pending
|
||||||
|
, i = 0;
|
||||||
|
|
||||||
|
try {
|
||||||
|
tokens = Lexer.lex(src, opt)
|
||||||
|
} catch (e) {
|
||||||
|
return callback(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
pending = tokens.length;
|
||||||
|
|
||||||
|
var done = function(err) {
|
||||||
|
if (err) {
|
||||||
|
opt.highlight = highlight;
|
||||||
|
return callback(err);
|
||||||
|
}
|
||||||
|
|
||||||
|
var out;
|
||||||
|
|
||||||
|
try {
|
||||||
|
out = Parser.parse(tokens, opt);
|
||||||
|
} catch (e) {
|
||||||
|
err = e;
|
||||||
|
}
|
||||||
|
|
||||||
|
opt.highlight = highlight;
|
||||||
|
|
||||||
|
return err
|
||||||
|
? callback(err)
|
||||||
|
: callback(null, out);
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!highlight || highlight.length < 3) {
|
||||||
|
return done();
|
||||||
|
}
|
||||||
|
|
||||||
|
delete opt.highlight;
|
||||||
|
|
||||||
|
if (!pending) return done();
|
||||||
|
|
||||||
|
for (; i < tokens.length; i++) {
|
||||||
|
(function(token) {
|
||||||
|
if (token.type !== 'code') {
|
||||||
|
return --pending || done();
|
||||||
|
}
|
||||||
|
return highlight(token.text, token.lang, function(err, code) {
|
||||||
|
if (err) return done(err);
|
||||||
|
if (code == null || code === token.text) {
|
||||||
|
return --pending || done();
|
||||||
|
}
|
||||||
|
token.text = code;
|
||||||
|
token.escaped = true;
|
||||||
|
--pending || done();
|
||||||
|
});
|
||||||
|
})(tokens[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (opt) opt = merge({}, marked.defaults, opt);
|
||||||
|
return Parser.parse(Lexer.lex(src, opt), opt);
|
||||||
|
} catch (e) {
|
||||||
|
e.message += '\nPlease report this to https://github.com/chjj/marked.';
|
||||||
|
if ((opt || marked.defaults).silent) {
|
||||||
|
return '<p>An error occured:</p><pre>'
|
||||||
|
+ escape(e.message + '', true)
|
||||||
|
+ '</pre>';
|
||||||
|
}
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Options
|
||||||
|
*/
|
||||||
|
|
||||||
|
marked.options =
|
||||||
|
marked.setOptions = function(opt) {
|
||||||
|
merge(marked.defaults, opt);
|
||||||
|
return marked;
|
||||||
|
};
|
||||||
|
|
||||||
|
marked.defaults = {
|
||||||
|
gfm: true,
|
||||||
|
tables: true,
|
||||||
|
breaks: false,
|
||||||
|
pedantic: false,
|
||||||
|
sanitize: false,
|
||||||
|
sanitizer: null,
|
||||||
|
mangle: true,
|
||||||
|
smartLists: false,
|
||||||
|
silent: false,
|
||||||
|
highlight: null,
|
||||||
|
langPrefix: 'lang-',
|
||||||
|
smartypants: false,
|
||||||
|
headerPrefix: '',
|
||||||
|
renderer: new Renderer,
|
||||||
|
xhtml: false
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expose
|
||||||
|
*/
|
||||||
|
|
||||||
|
marked.Parser = Parser;
|
||||||
|
marked.parser = Parser.parse;
|
||||||
|
|
||||||
|
marked.Renderer = Renderer;
|
||||||
|
|
||||||
|
marked.Lexer = Lexer;
|
||||||
|
marked.lexer = Lexer.lex;
|
||||||
|
|
||||||
|
marked.InlineLexer = InlineLexer;
|
||||||
|
marked.inlineLexer = InlineLexer.output;
|
||||||
|
|
||||||
|
marked.parse = marked;
|
||||||
|
|
||||||
|
if (typeof module !== 'undefined' && typeof exports === 'object') {
|
||||||
|
module.exports = marked;
|
||||||
|
} else if (typeof define === 'function' && define.amd) {
|
||||||
|
define(function() { return marked; });
|
||||||
|
} else {
|
||||||
|
this.marked = marked;
|
||||||
|
}
|
||||||
|
|
||||||
|
}).call(function() {
|
||||||
|
return this || (typeof window !== 'undefined' ? window : global);
|
||||||
|
}());
|
||||||
91
web/static/js/marked/man/marked.1
Обычный файл
91
web/static/js/marked/man/marked.1
Обычный файл
@@ -0,0 +1,91 @@
|
|||||||
|
.ds q \N'34'
|
||||||
|
.TH marked 1 "2014-01-31" "v0.3.1" "marked.js"
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
marked \- a javascript markdown parser
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B marked
|
||||||
|
[\-o \fI<output>\fP] [\-i \fI<input>\fP] [\-\-help]
|
||||||
|
[\-\-tokens] [\-\-pedantic] [\-\-gfm]
|
||||||
|
[\-\-breaks] [\-\-tables] [\-\-sanitize]
|
||||||
|
[\-\-smart\-lists] [\-\-lang\-prefix \fI<prefix>\fP]
|
||||||
|
[\-\-no\-etc...] [\-\-silent] [\fIfilename\fP]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.B marked
|
||||||
|
is a full-featured javascript markdown parser, built for speed. It also includes
|
||||||
|
multiple GFM features.
|
||||||
|
|
||||||
|
.SH EXAMPLES
|
||||||
|
.TP
|
||||||
|
cat in.md | marked > out.html
|
||||||
|
.TP
|
||||||
|
echo "hello *world*" | marked
|
||||||
|
.TP
|
||||||
|
marked \-o out.html in.md \-\-gfm
|
||||||
|
.TP
|
||||||
|
marked \-\-output="hello world.html" \-i in.md \-\-no-breaks
|
||||||
|
|
||||||
|
.SH OPTIONS
|
||||||
|
.TP
|
||||||
|
.BI \-o,\ \-\-output\ [\fIoutput\fP]
|
||||||
|
Specify file output. If none is specified, write to stdout.
|
||||||
|
.TP
|
||||||
|
.BI \-i,\ \-\-input\ [\fIinput\fP]
|
||||||
|
Specify file input, otherwise use last argument as input file. If no input file
|
||||||
|
is specified, read from stdin.
|
||||||
|
.TP
|
||||||
|
.BI \-t,\ \-\-tokens
|
||||||
|
Output a token stream instead of html.
|
||||||
|
.TP
|
||||||
|
.BI \-\-pedantic
|
||||||
|
Conform to obscure parts of markdown.pl as much as possible. Don't fix original
|
||||||
|
markdown bugs.
|
||||||
|
.TP
|
||||||
|
.BI \-\-gfm
|
||||||
|
Enable github flavored markdown.
|
||||||
|
.TP
|
||||||
|
.BI \-\-breaks
|
||||||
|
Enable GFM line breaks. Only works with the gfm option.
|
||||||
|
.TP
|
||||||
|
.BI \-\-tables
|
||||||
|
Enable GFM tables. Only works with the gfm option.
|
||||||
|
.TP
|
||||||
|
.BI \-\-sanitize
|
||||||
|
Sanitize output. Ignore any HTML input.
|
||||||
|
.TP
|
||||||
|
.BI \-\-smart\-lists
|
||||||
|
Use smarter list behavior than the original markdown.
|
||||||
|
.TP
|
||||||
|
.BI \-\-lang\-prefix\ [\fIprefix\fP]
|
||||||
|
Set the prefix for code block classes.
|
||||||
|
.TP
|
||||||
|
.BI \-\-mangle
|
||||||
|
Mangle email addresses.
|
||||||
|
.TP
|
||||||
|
.BI \-\-no\-sanitize,\ \-no-etc...
|
||||||
|
The inverse of any of the marked options above.
|
||||||
|
.TP
|
||||||
|
.BI \-\-silent
|
||||||
|
Silence error output.
|
||||||
|
.TP
|
||||||
|
.BI \-h,\ \-\-help
|
||||||
|
Display help information.
|
||||||
|
|
||||||
|
.SH CONFIGURATION
|
||||||
|
For configuring and running programmatically.
|
||||||
|
|
||||||
|
.B Example
|
||||||
|
|
||||||
|
require('marked')('*foo*', { gfm: true });
|
||||||
|
|
||||||
|
.SH BUGS
|
||||||
|
Please report any bugs to https://github.com/chjj/marked.
|
||||||
|
|
||||||
|
.SH LICENSE
|
||||||
|
Copyright (c) 2011-2014, Christopher Jeffrey (MIT License).
|
||||||
|
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
.BR markdown(1),
|
||||||
|
.BR node.js(1)
|
||||||
6
web/static/js/marked/marked.min.js
поставляемый
Обычный файл
6
web/static/js/marked/marked.min.js
поставляемый
Обычный файл
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
Ссылка в новой задаче
Block a user