vote up 1 vote down star

I decided to try http://www.screwturn.eu/ wiki as a code snippet storage utility. So far I am very impressed, but what irkes me is that when I copy paste my code that I want to save, '<'s and '[' (http://en.wikipedia.org/wiki/Character_encodings_in_HTML#Character_references) invariably screw up the output as the wiki interprets them as either wiki or HTML tags.

Does anyone know a way around this? Or failing that, know of a simple utility that would take C++ code and convert it to HTML safe code?

flag

Still an issue, take for example the following line: #include <iostream>; with escape and nowiki: <nowiki><esc>#include <iostream>;</esc></nowiki> it is output like this: #include ; – Whyamistilltyping Sep 19 '08 at 15:59

8 Answers

vote up 1 vote down check

Surround your code in <nowiki> .. </nowiki> tags.

link|flag
nowiki helps but does not solve the problem entirely – Whyamistilltyping Sep 19 '08 at 15:13
vote up 2 vote down

You can use the @@...@@ tag to escape the code and automatically wrap it in PRE tags.

link|flag
Can you elaborate a bit further? – Whyamistilltyping Sep 19 '08 at 15:28
vote up 0 vote down

I don't know of utilities, but I'm sure you could write a very simple app that does a find/replace. To display angle brackets, you just need to replace them with &gt; and &lt; respectively. As for the square brackets, that is a wiki specific problem with the markdown methinks.

link|flag
vote up 0 vote down

have you tried wrapping your code in html pre or code tags before pasting? both allow any special characters (such as '<') to be used without being interpreted as html. pre also honors the formatting of the contents.

example

if (foo
link|flag
vote up 0 vote down

Dario Solera wrote "You can use the @@...@@ tag to escape the code and automatically wrap it in PRE tags."

If you don't want it wrapped just use: <esc></esc>

link|flag
vote up 0 vote down

List of characters that need escaping:

  • < (less-than sign)
  • & (ampersand)
  • [ (opening square bracket)
link|flag
vote up 0 vote down

To post C++ code on a web page, you should convert it to valid HTML first, which will usually require the use of HTML character entities, as others have noted. This is not limited to replacing < and > with &lt; and &gt;. Consider the following code:

unsigned int maskedValue = value&mask;

Uh-oh, does the HTML DTD contain an entity called &mask;? Better replace & with &amp; as well.

Going in an alternate direction, you can get rid of [ and ] by replacing them with the trigraphs ??( and ??). In C++, trigraphs and digraphs are sequences of characters that can be used to represent specific characters that are not available in all character sets. They are unlikely to be recognized by most C++ programmers though.

link|flag
vote up -1 vote down

Thanks to everyone who suggested fixes, through the use of I have managed to fix most of my issues.

#include < iostream >;

when written as :

#include < iostream >;

Now works. Note the spaces inside the brackets, this is clearly a bit odd C++ code, but otherwise the whole tag is swallowed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.