Browse CVS Repository
Diff of /malonnote/mnNotePanel.cpp
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 157 |
exp8.Replace(&htmlText, wxT("<a href=mndoc:\\1>\\1</a>")); |
exp8.Replace(&htmlText, wxT("<a href=mndoc:\\1>\\1</a>")); |
| 158 |
|
|
| 159 |
/* table */ |
/* table */ |
| 160 |
wxRegEx exp10(wxT(",([^,\n]+)"), wxRE_DEFAULT); |
wxRegEx exp10(wxT("^,([^,]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 161 |
exp10.Replace(&htmlText, wxT("<td>\\1</td>")); |
exp10.Replace(&htmlText, wxT("<td>\\1</td>")); |
| 162 |
|
for(int i = 0; i < 10; i++){ // It's not good. :P |
| 163 |
|
wxRegEx exp16(wxT("</td>,([^,\n]+)"), wxRE_DEFAULT); |
| 164 |
|
exp16.Replace(&htmlText, wxT("</td><td>\\1</td>")); |
| 165 |
|
} |
| 166 |
wxRegEx exp11(wxT("^<td>"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp11(wxT("^<td>"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 167 |
exp11.Replace(&htmlText, wxT("<tr><td>")); |
exp11.Replace(&htmlText, wxT("<tr><td>")); |
| 168 |
wxRegEx exp12(wxT("</td>$"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp12(wxT("</td>$"), wxRE_NEWLINE|wxRE_DEFAULT); |
|
|
Legend:
| Removed from v.1.2 |
|
| changed lines |
| |
Added in v.1.3 |
|
|
| |