After using a comment panel in Brian's GoogleGroups for a while to format my posts, and spamming Brian, I've discovered and easier way to format you code for presenting to the GWT posse.
1. Open up any posting/issue/wiki page in GitHub, like this one<https://github.com/branflake2267/GWT-Maps-V3-Api/issues/new> . 2. Paste your code in and surround with ```<languageName><yourCode>``` 3. Click preview and copy and paste into your GWT Groups posting. Example Input: ```scala object pingpong extends Application { val pong = new Pong val ping = new Ping(100000, pong) ping.start pong.start } ``` Example Output: object pingpong extends Application { val pong = new Pong val ping = new Ping(100000, pong) ping.start pong.start} Perhaps we can put a sticky about this under posting on the group since we get unformatted code posting that are quite difficult to read all the time. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/lFZNHeXxyUkJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
