Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
9d1c6f6f
Commit
9d1c6f6f
authored
Nov 29, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #249 from albert-github/feature/bug_latex_single_quotes
LaTeX problem with 2 consecutive single quotes
parents
200b828e
0cb39b4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
htmlentity.cpp
src/htmlentity.cpp
+1
-1
util.cpp
src/util.cpp
+2
-0
No files found.
src/htmlentity.cpp
View file @
9d1c6f6f
...
...
@@ -298,7 +298,7 @@ static struct htmlEntityInfo
// doxygen extension to the HTML4 table of HTML entities
{
SYM
(
tm
),
"
\xe2\x84\xa2
"
,
"™"
,
"<trademark/>"
,
"™"
,
"
\\
texttrademark{}"
,
"(TM)"
,
"
\\
'99"
,
{
"trademark"
,
DocSymbol
::
Perl_symbol
}},
{
SYM
(
apos
),
"'"
,
"'"
,
"'"
,
"'"
,
"
'"
,
"'"
,
"'"
,
{
"
\\\'
"
,
DocSymbol
::
Perl_string
}},
{
SYM
(
apos
),
"'"
,
"'"
,
"'"
,
"'"
,
"
\\
textquotesingle{}"
,
"'"
,
"'"
,
{
"
\\\'
"
,
DocSymbol
::
Perl_string
}},
// doxygen commands represented as HTML entities
{
SYM
(
BSlash
),
"
\\
"
,
"
\\
"
,
"
\\
"
,
"
\\
"
,
"
\\
textbackslash{}"
,
"
\\\\
"
,
"
\\\\
"
,
{
"
\\\\
"
,
DocSymbol
::
Perl_string
}},
...
...
src/util.cpp
View file @
9d1c6f6f
...
...
@@ -6502,6 +6502,8 @@ void filterLatexString(FTextStream &t,const char *str,
break
;
case
'"'
:
t
<<
"
\\
char`
\\\"
{}"
;
break
;
case
'\''
:
t
<<
"
\\
textquotesingle{}"
;
break
;
default
:
//if (!insideTabbing && forceBreaks && c!=' ' && *p!=' ')
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment