@@ -85,7 +85,8 @@ class ToMarkdown(Tokenizer):
|
|||||||
# indicating a new paragraph.
|
# indicating a new paragraph.
|
||||||
if tType == self.T_EMPTY:
|
if tType == self.T_EMPTY:
|
||||||
if len(thisPar) > 0:
|
if len(thisPar) > 0:
|
||||||
self.theResult += "%s\n\n" % " ".join(thisPar)
|
tTemp = "\n".join(thisPar)
|
||||||
|
self.theResult += "%s\n\n" % tTemp.rstrip()
|
||||||
thisPar = []
|
thisPar = []
|
||||||
|
|
||||||
elif tType == self.T_HEAD1:
|
elif tType == self.T_HEAD1:
|
||||||
@@ -104,7 +105,7 @@ class ToMarkdown(Tokenizer):
|
|||||||
self.theResult += "%s\n\n" % tText
|
self.theResult += "%s\n\n" % tText
|
||||||
|
|
||||||
elif tType == self.T_SKIP:
|
elif tType == self.T_SKIP:
|
||||||
self.theResult += "\n\n\n\n"
|
self.theResult += "\n\n\n"
|
||||||
|
|
||||||
elif tType == self.T_TEXT:
|
elif tType == self.T_TEXT:
|
||||||
thisPar.append(tText)
|
thisPar.append(tText)
|
||||||
|
|||||||
@@ -122,8 +122,8 @@ class ToText(Tokenizer):
|
|||||||
tText = self._centreText(tText,self.wordWrap)
|
tText = self._centreText(tText,self.wordWrap)
|
||||||
self.theResult += "%s\n\n" % tText
|
self.theResult += "%s\n\n" % tText
|
||||||
|
|
||||||
elif tType == self.T_SEP:
|
elif tType == self.T_SKIP:
|
||||||
self.theResult += "\n\n\n\n"
|
self.theResult += "\n\n\n"
|
||||||
|
|
||||||
elif tType == self.T_TEXT:
|
elif tType == self.T_TEXT:
|
||||||
thisPar.append(tText)
|
thisPar.append(tText)
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ class GuiConfigEditor(QDialog):
|
|||||||
self.setWindowTitle("Preferences")
|
self.setWindowTitle("Preferences")
|
||||||
self.guiDeco = self.theParent.theTheme.loadDecoration("settings",(64,64))
|
self.guiDeco = self.theParent.theTheme.loadDecoration("settings",(64,64))
|
||||||
|
|
||||||
self.theProject.countStatus()
|
|
||||||
self.tabMain = GuiConfigEditGeneral(self.theParent)
|
self.tabMain = GuiConfigEditGeneral(self.theParent)
|
||||||
self.tabEditor = GuiConfigEditEditor(self.theParent)
|
self.tabEditor = GuiConfigEditEditor(self.theParent)
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ class GuiExport(QDialog):
|
|||||||
|
|
||||||
self.guiDeco = self.theParent.theTheme.loadDecoration("export",(64,64))
|
self.guiDeco = self.theParent.theTheme.loadDecoration("export",(64,64))
|
||||||
|
|
||||||
self.theProject.countStatus()
|
|
||||||
self.tabMain = GuiExportMain(self.theParent, self.theProject, self.optState)
|
self.tabMain = GuiExportMain(self.theParent, self.theProject, self.optState)
|
||||||
self.tabPandoc = GuiExportPandoc(self.theParent, self.theProject, self.optState)
|
self.tabPandoc = GuiExportPandoc(self.theParent, self.theProject, self.optState)
|
||||||
|
|
||||||
|
|||||||
@@ -582,6 +582,9 @@ class NWProject():
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
def countStatus(self):
|
def countStatus(self):
|
||||||
|
"""Count how many times the various status flags are used in the
|
||||||
|
project tree.
|
||||||
|
"""
|
||||||
self.statusItems.resetCounts()
|
self.statusItems.resetCounts()
|
||||||
self.importItems.resetCounts()
|
self.importItems.resetCounts()
|
||||||
for nwItem in self.projTree.values():
|
for nwItem in self.projTree.values():
|
||||||
|
|||||||
@@ -41,6 +41,8 @@ class NWStatus():
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
def lookupEntry(self, theLabel):
|
def lookupEntry(self, theLabel):
|
||||||
|
if theLabel is None:
|
||||||
|
return None
|
||||||
theLabel = theLabel.strip()
|
theLabel = theLabel.strip()
|
||||||
if theLabel in self.theMap.keys():
|
if theLabel in self.theMap.keys():
|
||||||
return self.theMap[theLabel]
|
return self.theMap[theLabel]
|
||||||
|
|||||||
Reference in New Issue
Block a user