HTML Help
This help is for HTML-style markup. You can use it almost anywhere there is a box of text, but you’ll most often find it useful on the message boards, in your clues, or in AQ mail. It cannot be used in form elements that only allow a single line of text such as a message board post or the name of a letterbox.
Quoting Text
By far, the most commonly used tag on the message boards: quoting text. Text surrounded by <quote> and </quote> will be displayed in a special box marking it as quoted text. So for instance, if someone mentions that national parks do not allow letterboxing and this is shocking to you so you want to follow up and ask why, you could type this: <quote>National Parks do not allow letterboxing.</quote> then follow up with the appropriate degree of shock. That will generate the box below:
This is, naturally, the recommended way to quote a small segment of the post you are replying to.
Decorating Text
For those of you that know HTML, decorating text is as easy as using HTML. For those of you who do not know HTML, it’s as simple as surrounding the text you want to decorate with tags that mark the beginning and end of the decorated text.
To italicize text, begin the decorated text with <i> and end it with </i>. That’s it! To create bold text, use <b> and </b> respectively. And to underline text? Yes, use <u> and </u>.
Some examples will make this even clearer:
Less common tags include subscripts and superscripts, typewriter text, deleted text and
Linking the Web Together
Often times, you’ll want to post a link to a webpage or resource somewhere on the Internet. The normal a href tags will work, but it’s somewhat of a mouthful to type, so there is a shortcut syntax to create links a bit quicker and easier. Some examples will make the syntax clearer.
Showing Images
Images are not allowed in most places on Atlas Quest such as the message boards. It helps keep the boards running fast for folks on slow Internet connections. There are, however, a couple of exceptions including the Help pages and your AQ-hosted letterboxing clues.
The alternate text is not required, but it is considered good style to include something in place of the image for the blind (screen readers can scan the text, but not the image) or for those who have images disabled.
Showing Videos
Videos, like images, are not allowed in most places on Atlas Quest such as the message boards for the same reasons. Like with images, however, there are a couple of exceptions including the Help pages and your AQ-hosted letterboxing clues.
The video is required to be in the MP4 format. If you attempt to include a video on a page that does not allow it, the video will be turned into a link instead.
Creating Lists
You have two types of lists to choose from: ordered and unordered. An ordered list is numbered while the unordered list use bullets to mark each list item. It’s a bit messy with the HTML markup, but it can be done!
- First list item
- Second list item
- First list item
- Second list item
Creating Tables
Yes, you can create some pretty cool looking tables. It’s a syntax nightmare, and if you do it often, you might want to switch to the wiki-style formatting, but here’s how it works:
Row 1, Col 1 | Row 1, Col 2 |
Row 2, Col 1 | Row 2, Col 2 |
Miscellaneous Options
In rare cases, you might want to post a table or some other data that must be formatted in a specific way. Web browsers, unless told otherwise, will squish multiple spaces into a single space. You can turn off this behavior by putting the text in question between the <pre> and </pre> tags. For instance, you might want to create a list of costs you incurred to create a letterbox that looks like this:
Eraser: $0.67 X-acto knife: 3.99 Ziplock bags: 2.99 Box: 1.99 ------- $9.64
Unless you put that entire list between <pre> and </pre> tags, it’ll turn out like this:
You can use header tags to mark sections of your post as headings. Header tags use the format <hX> where X is a number from 1 to 6 that specifies what size of header to use. Here are examples of all header tags:
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
And finally, you can add links to Amazon.com. If there’s a book or other product that you want to link to, there’s a special construct to make it really snazzy:
By typing this: [amazon:0762746793 The Letterboxer’s Companion]
Be sure to hover your mouse cursor over the link to see the snazziest part! That number is the ISBN number of the book on Amazon. Items without ISBN numbers have an ASIN—an Amazon.com equivalent of ten alphanumeric characters. You’d have to look up the item on Amazon’s website to find its ASIN.
To help secure Atlas Quest against hackers, only these HTML elements are supported at this time. Additionally, Atlas Quest is very picky about what it will accept as a valid HTML—much more so than browsers will tolerate. Atlas Quest will only accept tags that have no spaces or additional attributes included. So if you use <b > to begin your decorated text, Atlas Quest will not interpret it as a tag and instead display exactly what you typed: <b >.
If you include a URL in one of your posts, the link must be complete, including the http:// (or https:// or ftp:// or mailto:) part at the beginning of the URL. If you write a URL without the prefix, such as www.atlasquest.com, it will not be turned into a link.
Because it is possible to make mistakes (forgetting a closing tag of an element, for instance), it is recommended that you preview your posts before posting them to ensure everything looks like you expect it to.
Also available: a wiki-style markup. Which of these that Atlas Quest applies to your text depends on your Preferences. You can check out our Markup Comparisons chart to see at a glance how all of the versions compare.