Fixed bad regexps
This commit is contained in:
parent
f0f6054bef
commit
65c5bcdbb9
1 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||||||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Clean" script:language="StarBasic">Sub mark13
|
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Clean" script:language="StarBasic">Sub mark17
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
@ -120,7 +120,7 @@ Private Sub unicodeSymbolsConversion
|
||||||
'Latin Extended A \u0100-\u017f
|
'Latin Extended A \u0100-\u017f
|
||||||
'\u02bb Modifier Letter Turned Comma is in IPH Astra
|
'\u02bb Modifier Letter Turned Comma is in IPH Astra
|
||||||
' unicodeConversionEverywhere("[\u0020-\u007F]+",RAtts)
|
' unicodeConversionEverywhere("[\u0020-\u007F]+",RAtts)
|
||||||
unicodeConversionEverywhere("[\u2100-\u214f,\u0020-\u007f,\u0080-\u00ff,\u0400-\u04ff,\u2000-\u206f,\u0301,\u0304,\u0323,\u032e,\u0331,\u035f,\u02bb,\u0100-\u017f]+",RAtts)
|
unicodeConversionEverywhere("[\u2100-\u214f\u0020-\u007f\u0080-\u00ff\u0400-\u04ff\u2000-\u206f\u0301\u0304\u0323\u032e\u0331\u035f\u02bb\u0100-\u017f]+",RAtts)
|
||||||
'Arabic Scheherazade
|
'Arabic Scheherazade
|
||||||
'Arabic Presentation Forms-A fb50-fdff
|
'Arabic Presentation Forms-A fb50-fdff
|
||||||
'Arabic Presentation Forms-B fe70-feff
|
'Arabic Presentation Forms-B fe70-feff
|
||||||
|
@ -128,7 +128,7 @@ Private Sub unicodeSymbolsConversion
|
||||||
RAtts(0).Value = newFontName
|
RAtts(0).Value = newFontName
|
||||||
RAtts(1).Value = newFontName
|
RAtts(1).Value = newFontName
|
||||||
RAtts(2).Value = newFontName
|
RAtts(2).Value = newFontName
|
||||||
unicodeConversionEverywhere("[\u0600-\u06ff,\ufb50-\ufdff,\ufe70-\ufeff]+",RAtts)
|
unicodeConversionEverywhere("[\u0600-\u06ff\ufb50-\ufdff\ufe70-\ufeff]+",RAtts)
|
||||||
|
|
||||||
'Greek Tinos
|
'Greek Tinos
|
||||||
newFontName = "Tinos"
|
newFontName = "Tinos"
|
||||||
|
@ -137,7 +137,7 @@ Private Sub unicodeSymbolsConversion
|
||||||
RAtts(2).Value = newFontName
|
RAtts(2).Value = newFontName
|
||||||
'Greek and Coptic 0370—03FF
|
'Greek and Coptic 0370—03FF
|
||||||
'Greek extended 1F00—1FFF
|
'Greek extended 1F00—1FFF
|
||||||
unicodeConversionEverywhere("[\u0370-\u03ff,\u1f00-\u1fff]+",RAtts)
|
unicodeConversionEverywhere("[\u0370-\u03ff\u1f00-\u1fff]+",RAtts)
|
||||||
|
|
||||||
|
|
||||||
'DejaVu Sans Mathematical operators
|
'DejaVu Sans Mathematical operators
|
||||||
|
|
Loading…
Add table
Reference in a new issue