Browse CVS Repository
Diff of /malonnote/mnNotePanel.cpp
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 139 |
|
|
| 140 |
/* [[ ]] */ |
/* [[ ]] */ |
| 141 |
wxRegEx exp1(wxT("\\[\\[([^\\}]+)\\]\\]")); |
wxRegEx exp1(wxT("\\[\\[([^\\}]+)\\]\\]")); |
| 142 |
exp1.Replace(&htmlText, wxT("<a href=" MNLINK "\\1>\\1</a>")); |
exp1.Replace(&htmlText, wxT("<a href=\"" MNLINK "\\1\">\\1</a>")); |
| 143 |
|
|
| 144 |
/* file:// */ |
/* file:// */ |
| 145 |
wxRegEx exp3(wxT("(file://[^ ]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp3(wxT("(file://[^ ]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
| 171 |
|
|
| 172 |
/* {{ }} */ |
/* {{ }} */ |
| 173 |
wxRegEx exp8(wxT("\\{\\{([^\\}]+)\\}\\}")); |
wxRegEx exp8(wxT("\\{\\{([^\\}]+)\\}\\}")); |
| 174 |
exp8.Replace(&htmlText, wxT("<a href=" MNDOC "\\1>\\1</a>")); |
exp8.Replace(&htmlText, wxT("<a href=\"" MNDOC "\\1\">\\1</a>")); |
| 175 |
|
|
| 176 |
/* table */ |
/* table */ |
| 177 |
wxRegEx exp10(wxT("^,([^,]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
wxRegEx exp10(wxT("^,([^,]+)"), wxRE_NEWLINE|wxRE_DEFAULT); |
|
|
Legend:
| Removed from v.1.11 |
|
| changed lines |
| |
Added in v.1.12 |
|
|
| |