Help for composing message syntax in this forum posts

There is a user guide for using this forum?
In my case, there is a specific help for composing/formatting a message?
Eg: how can I include parts of html code in posts?
tks in advance.

yeah, thats a pain. have you tried using


or some similar site to shove your code on?

1 Like

I’ve resorted to posting code examples as an image. I can’t figure out how to post it directly.

@Printninja and @micheleSaltori

Oh my god YES!

I just checked this link out

now, after following its advice, look upon my works and tremble!

I give you, SHINY, JAVASCRIPT, COLOUR SYNTAX CODE!


var x = "Hello world!";

console.log(x);

and for html, here is the standard Pinegrow, plain vanilla , html page template.

oh yes, the forum just got way prettier!
cheers both, for making me look it up

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="description" content="">
        <meta name="author" content="">
        <title>New page</title>
        <link href="style.css" rel="stylesheet">
    </head>
    <body></body>
</html>
2 Likes

Let’s try it… <div><p>hello world</p></div> That seemed to work. Now some more…

<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="description" content="">
        <meta name="author" content="">
        <title>New page</title>
        <link href="style.css" rel="stylesheet">
    </head>
    <body></body>
</html>

Looks good. Thanks for figuring this out!!!