How to format a script in the new forum

Scripts and programs to automate Astroart
Post Reply
Forum_2019
Posts: 7
Joined: 07 Jan 2019, 15:29

How to format a script in the new forum

Post by Forum_2019 » 07 Jan 2019, 15:52

Hello,

just put the tags:

[code]

[/code]

at the beginning and the end of your code. For example:

[code]
for a = 1 to 10
print a
next a
[/code]

becomes: (see next post)
The tags can be added automatically if you Select your code then press the button " </> " above
Last edited by Forum_2019 on 07 Jan 2019, 17:21, edited 1 time in total.

Forum_2019
Posts: 7
Joined: 07 Jan 2019, 15:29

Re: How to format a script in the new forum

Post by Forum_2019 » 07 Jan 2019, 15:53

Code: Select all

 
for a = 1 to 10
  print a
next a 
This is the result of formatting the code.

Forum_2019
Posts: 7
Joined: 07 Jan 2019, 15:29

Re: How to format a script in the new forum

Post by Forum_2019 » 07 Jan 2019, 15:55

(The formatting spaces must be written by hand, in the first post they were present, but they were hidden)

Post Reply