Beta release

This commit is contained in:
benweet 2014-04-21 21:39:41 +01:00
parent 379ee55372
commit d4c3e83cde
6 changed files with 49 additions and 45 deletions

View File

@ -1,6 +1,6 @@
{
"name": "stackedit",
"version": "3.99.0",
"version": "3.99.1",
"description": "StackEdit is a free, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.",
"dependencies": {
"bootstrap": "3.0.3",

View File

@ -1,9 +1,12 @@
{
"name": "stackedit",
"version": "3.99.0",
"version": "3.99.1",
"private": true,
"description": "StackEdit is a free, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.",
"main": "res/main.js",
"engines": {
"node": "0.10.x"
},
"directories": {
"doc": "doc"
},

View File

@ -1,5 +1,5 @@
CACHE MANIFEST
#Date Mon Apr 21 2014 18:50:39
#Date Mon Apr 21 2014 21:11:15
CACHE:
res/worker.js

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
define([], function() {
var constants = {};
constants.VERSION = "3.99.0";
constants.VERSION = "3.99.1";
constants.MAIN_URL = "https://stackedit.io/";
constants.GOOGLE_ANALYTICS_ACCOUNT_ID = "UA-39556145-1";
constants.GOOGLE_API_KEY = "AIzaSyAeCU8CGcSkn0z9js6iocHuPBX4f_mMWkw";

View File

@ -332,7 +332,8 @@ else
) // attacklab: there are sentinel newlines at end of document
/gm,function(){...}};
*/
text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\b[^\r]*?.*<\/\2>[ \t]*(?=\n+)\n)/gm, hashElement);
//text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\b[^\r]*?.*<\/\2>[ \t]*(?=\n+)\n)/gm, hashElement);
text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\b[^\r]*?<\/\2>[ \t]*(?=\n+)\n)/gm, hashElement);
// Special case just for <hr />. It was easier to make a special case than
// to make the other regex more complicated.