Changes between Initial Version and Version 1 of Ticket #6165
- Timestamp:
- Aug 17, 2010, 7:12:42 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6165
-
Property
Status
changed from
new
topending
- Property Keywords insert source code removed
-
Property
Status
changed from
-
Ticket #6165 – Description
initial v1 2 2 3 3 For example, when you use the "Insert/Edit Source Code" button to create the following wikitext, it will generate 4 {{{ 4 5 <source lang="cpp">int main(int argc, char* argv[]) { 5 6 cout << "a + b = 1" << endl; 6 7 return 0; 7 8 }</source> 8 9 }}} 9 10 where it should be in the format of 10 11 {{{ 11 12 <source lang="cpp"> 12 13 int main(int argc, char* argv[]) { … … 15 16 } 16 17 </source> 18 }}}