Fix for hyphenations convertation to manual
This commit is contained in:
parent
ff35128df4
commit
13d70679cc
3 changed files with 7 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
xmlns:dep="http://openoffice.org/extensions/description/2006"
|
xmlns:dep="http://openoffice.org/extensions/description/2006"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
<identifier value="pro.litvinovg.epublishing" />
|
<identifier value="pro.litvinovg.epublishing" />
|
||||||
<version value="0.7.3" />
|
<version value="0.7.4" />
|
||||||
<platform value="all" />
|
<platform value="all" />
|
||||||
<display-name>
|
<display-name>
|
||||||
<name lang="ru">Инструменты для создания электронных изданий</name>
|
<name lang="ru">Инструменты для создания электронных изданий</name>
|
||||||
|
|
|
@ -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="Hyphenations" script:language="StarBasic">Private Sub markHyph4
|
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Hyphenations" script:language="StarBasic">Private Sub markHyph
|
||||||
End sub
|
End sub
|
||||||
|
|
||||||
Private Sub convertHyphInDoc()
|
Private Sub convertHyphInDoc()
|
||||||
|
@ -380,6 +380,10 @@ Private Function needHyphen(before As String, after As String,lineLength As Inte
|
||||||
needHyphen = false
|
needHyphen = false
|
||||||
Case "/"
|
Case "/"
|
||||||
needHyphen = false
|
needHyphen = false
|
||||||
|
Case "?"
|
||||||
|
needHyphen = false
|
||||||
|
Case "!"
|
||||||
|
needHyphen = false
|
||||||
End Select
|
End Select
|
||||||
Select Case after
|
Select Case after
|
||||||
Case " "
|
Case " "
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
0.7.2 Added conversion for endnotes to manual endontes and back
|
||||||
0.6.15 Increased limit of articles in issue to 50
|
0.6.15 Increased limit of articles in issue to 50
|
||||||
0.6.14 Bugfix: Remove bookmark before creating another one with the same name
|
0.6.14 Bugfix: Remove bookmark before creating another one with the same name
|
||||||
0.6.13 Forbid creating bidirectional links with empty text
|
0.6.13 Forbid creating bidirectional links with empty text
|
||||||
|
|
Loading…
Add table
Reference in a new issue