Menu

Forum guidelines

2010-06-14
2013-04-06
  • Charles Prud'homme

    These are some simple rules to apply to have a correct and quick reply to your question.

    Before posting, please :
    - be sure you are the first asking the question, look at the FAQ and search on older posts,
    - read the documentation,

    If you didn't find any satisfied answers, please:
    - choose expressive title,
    - define clearly the problem and your questions,
    - as much as possible, provide code, trace, … everything that can clarify your words,
    - use tags,
    - precise the version of the choco.jar,
    - avoid multiple posts or posts without relevant information,
    - be kind / polite with other forum users.

    Thank you for your understanding.

     
  • Charles Prud'homme

    To avoid surprises in rendering codify text, keep in mind that BBCode tags are "inclusive". So, for example, italic tags inside code tags … makes the code text to be in italic!

    As a short example is better than long explanations:

    You want to codify the following text:

    int array = new int;
    for(int i = 0; i < 10; i++){
      array = i;
    }

    i is not the best choice for index name as  (without spaces) is also the italic BBCode tag, you will get that:

    int[ ] array = new int[ ];
    for(int i = 0; i < 10; i++){
      array[i] = i;
    }
    

    instead of the expected:

    int[ ] array = new int[ ];
    for(int idx = 0; idx < 10; idx++){
      array[idx] = idx;
    }
    

    Please, check your codified text one more time before posting ;)

     
  • amnon

    amnon - 2012-07-26

    documentation link requires update…

     
  • Charles Prud'homme

    Any useful links can be found on the website: website of choco

    Hope it helsp,
    CP

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.