Changes between Version 20 and Version 21 of WikiStart


Ignore:
Timestamp:
Mar 10, 2026, 9:07:51 PM (92 minutes ago)
Author:
mLipok
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v20 v21  
    99 * Search the [http://www.autoitscript.com/forum/ forum] to see if the issue has been discussed there.
    1010 * Do not create a new ticket because an old ticket was closed. Reply to the old ticket if you have additional information and the developers will make the determination if the ticket should be re-opened.
    11  * Please use the following syntax when inserting code.  It helps the code stand out making it easier to read.
     11 * Please use the following syntax when inserting code (also with the `marks` argument when you want to highlight specific lines).  It helps the code stand out making it easier to read.
    1212{{{
    13 {{{#!autoit
    14     MsgBox(4096, "", "This is source code")
     13{{{#!autoit lineno=1 marks=1,3-4
     14_Example()
     15
     16Func _Example()
     17        MsgBox(4096, "", "This is source code")
     18EndFunc
    1519}}}
     20}}}
     21        Result:
     22{{{#!autoit lineno=1 marks=1,3-4
     23_Example()
     24
     25Func _Example()
     26        MsgBox(4096, "", "This is source code")
     27EndFunc
    1628}}}
    1729 * If you must post a large piece of code then please attach the file instead of posting it in-line.