MiniMag Syntax Help

0
(ツ) admin
Last edited: 02.03.2023 by admin
3852
16.11.2022

When you writing reply or submit new post, there is MiniMag Help on the right Tab, here are some basic formatting with MiniMag syntax (shared similarity MarkDown syntax)

Post editing help

Tags:

Some of the existing tags can (and should) be reused, or the thread starter can define his own tags. The format of the new created tags is:

  TAGNAME[:TAG_DESCRIPTION]

The TAGNAME should not contains spaces and should be kept as short as possible. The TAG_DESCRIPTION can be much longer and can contain spaces and other punctuation.


Text formatting:

  • Separate paragraphs by empty line.


    Inline formatting:

    *bold*, /italic/, _underlined_, -striked-, -_*combined*_-, `monospaced`
    

    Renders as: bold, /italic/, underlined, -striked-, -_*combined*_-, monospaced


    Inline link: Visit [http://board.asm32.info][AsmBB demo forum]. Don't start it at the first text column. Renders to: "Visit AsmBB demo forum".


    Images are the same as the links (inline or link-labels), but the label starts with ? (inline image) or ! (block image):

    [?https://asmbb.org/images/favicons/android-chrome-48x48.png][asmbb]
    [!https://asmbb.org/images/favicons/android-chrome-48x48.png][asmbb]
    

    [?https://asmbb.org/images/favicons/android-chrome-48x48.png][asmbb] renders as asmbb

    [!https://asmbb.org/images/favicons/android-chrome-48x48.png][asmbb] renders as:

    asmbb

    The following smiles are predefined and can be directly used in the posts:

     [?:)], [?:-)], [?smile]
     [?;)], [?;-)], [?wink]
     [?:D], [?:-D], [?lol] [?rofl]
     [?:(], [?:-(], [?sad]
     [?:'(], [?:'-(], [?cry]
     [?:P], [?:-P]
     [?>:(], [?>:-(], [?angry]
    

    They renders to:

    :) ;) :D :( :'( :P >:(


    Blockquotes:

     ;quote johnfound
       This is a quoted text.
    
       It can contain *formatting* as well.
     ;end
    
    johnfound

    This is a quoted text

    It can contain formatting as well.


    Block of code:

     ;begin
          mov  eax, ebx
          add  eax, ecx
          xchg eax, ecx
     ;end
    

    Renders to:

         mov  eax, ebx
         add  eax, ecx
         xchg eax, ecx
    

Attached files:
FileSizeUploadedDownloadsMD5 hash
help.png21223 bytes02.03.202370773c50f04796a4ed2f703bd088056d9df
171
24.11.2025
Feature	              Standard Markdown                MiniMag Assembly

Inline Link	          [Text](URL)	                   [URL][Text]
Reference Link        [Text][ID]	                   [ID][Text]
Auto-link	          <URL>	                           [URL] (If URL is not a defined ref ID)
Image                 ![Alt](URL)	                   [!URL][Alt]
Video                 (None)	                       [$URL]
Ref Definition	      [ID]: URL	                       [ID] URL (Colon not required)

MiniMag Syntax Help

0