mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 07:13:08 -05:00
Merge pull request #241 from selvan/master
Fixes for handling paste of copied content from Google sheet and docs
This commit is contained in:
commit
8e843a1afc
1 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ var styleToSemantic = {
|
|||
}
|
||||
},
|
||||
fontWeight: {
|
||||
regexp: /^bold/i,
|
||||
regexp: /^bold|^700/i,
|
||||
replace: function ( doc ) {
|
||||
return createElement( doc, 'B' );
|
||||
}
|
||||
|
@ -178,7 +178,7 @@ var stylesRewriters = {
|
|||
}
|
||||
};
|
||||
|
||||
var allowedBlock = /^(?:A(?:DDRESS|RTICLE|SIDE|UDIO)|BLOCKQUOTE|CAPTION|D(?:[DLT]|IV)|F(?:IGURE|IGCAPTION|OOTER)|H[1-6]|HEADER|L(?:ABEL|EGEND|I)|O(?:L|UTPUT)|P(?:RE)?|SECTION|T(?:ABLE|BODY|D|FOOT|H|HEAD|R)|UL)$/;
|
||||
var allowedBlock = /^(?:A(?:DDRESS|RTICLE|SIDE|UDIO)|BLOCKQUOTE|CAPTION|D(?:[DLT]|IV)|F(?:IGURE|IGCAPTION|OOTER)|H[1-6]|HEADER|L(?:ABEL|EGEND|I)|O(?:L|UTPUT)|P(?:RE)?|SECTION|T(?:ABLE|BODY|D|FOOT|H|HEAD|R)|COL(?:GROUP)?|UL)$/;
|
||||
|
||||
var blacklist = /^(?:HEAD|META|STYLE)/;
|
||||
|
||||
|
|
Loading…
Reference in a new issue