Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

can you embed code inside the actual posts?

UPDATE:
ok, now my question is:
can you simply add syntax highlighting?
when you change themes, will the way code tags are displayed change?

i am planning to create a developer community and the posts will be centered around codes embedded in them, so it is vital that they are displayed correctly.
thanks

original post:
this is some random code for testing, let's see how it works =)

g.flashNotReady = function () {
if (!g.ready) {
g.soundAvailable = e;
g.soundEnabled = e;
g.soundReady = a;
g.checkIfEverythingIsReady()
}
};
g.flashReady = function (b) {
g.flashSoundPlayer = b;
g.soundAvailable = a;
g.soundEnabled = a;
g.soundReady = a;
g.checkIfEverythingIsReady()
};
g.flashLoaded = function () {
if (g.flashIframeDoc) {
var b = g.flashIframeDoc.getElementById("pacman-sound-player");
if (b && b.playTrack) {
g.flashReady(b);
return
} else if ((b = g.flashIframeDoc.getElementById("pacman-sound-player-2")) && b.playTrack) {
g.flashReady(b);
return
}
}
g.flashNotReady()
};
g.destroy = function () {
if (google.pacman) {
g.stopAllAudio();
window.clearInterval(g.tickTimer);
window.clearInterval(g.dotTimer);
window.clearInterval(g.dotTimerMs);
google.dom.remove(g.styleElement);
google.dom.remove(g.flashIframe);
google.dom.remove(g.canvasEl);
google.pacman = undefined
}
};
g.exportFunctionCalls = function () {
google.pacman = {};
google.pacman.insertCoin = g.insertCoin;
google.pacman.flashLoaded = g.flashLoaded;
google.pacman.destroy = g.destroy
};
g.updateLoadingProgress = function (b) {
b = Math.round(b * 200);
document.getElementById("logo-b").style.width = b + "px"
};
Tagged:

Comments

Sign In or Register to comment.