Edward
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
5 deletions
-
sapl/utils.py
|
|
|
@ -707,13 +707,13 @@ def TrocaTag(texto, startTag, endTag, sizeStart, sizeEnd, styleName): |
|
|
|
if (texto[i:i + sizeEnd] == endTag): |
|
|
|
textoSaida += 'blockTable><para>' |
|
|
|
insideTag = 0 |
|
|
|
i = i + sizeEnd |
|
|
|
i += sizeEnd |
|
|
|
else: |
|
|
|
textoSaida += texto[i] |
|
|
|
i = i + 1 |
|
|
|
i += 1 |
|
|
|
else: |
|
|
|
textoSaida += texto[i] |
|
|
|
i = i + 1 |
|
|
|
i += 1 |
|
|
|
|
|
|
|
return textoSaida |
|
|
|
|
|
|
|
@ -729,6 +729,6 @@ def RemoveTag(texto): |
|
|
|
|
|
|
|
else: |
|
|
|
textoSaida += texto[i] |
|
|
|
i = i + 1 |
|
|
|
i += 1 |
|
|
|
|
|
|
|
return textoSaida |
|
|
|
return textoSaida |
|
|
|
|