rootbeer277
- user since
- Tue Oct 28 2003 at 01:39:50 (4.9 years ago )
- last seen
- Fri Sep 5 2008 at 00:55:38 (8.1 hours ago )
- number of write-ups
- 254 - View rootbeer277's writeups (feed)
- level / experience
- 7 (Artisan) / 14370
- C!s spent
- 171
- mission drive within everything
- Make Everything2 easier to use
- specialties
- Electricity & manufacturing, and helping new users.
- motto
- Always park near the exit.
- member of
- gods, edev - My Endorsements
- most recent writeup
- Charlie Wilson's War
Hurricane Gustav has knocked over my satellite dish, limiting my Internet access for the next several days.I've created a zen stylesheet called Jukka Pro, based on Ascorbic's Jukka Emulation. There used to be a screenshot above of Carbonated but now it's the outdoor outlet I found that was shorted out for not being properly sealed against the rain. Carbonated has advanced features, you're not ready for it. The purpose of Jukka Pro is twofold.
Missing p tags will display in a sans-serif font, unlike the normal p tags which will display paragraphs in a serif font which is easier to read for large blocks of text. Blockquotes used as margin tools will now look very silly because of the grey vertical line next to and dashed lines above and below the entire writeup. Small tag abuse is now impossible, as small tags no longer stack. Big tags still stack though, so go nuts. Besides the margins, other nice features are the serif font used for paragraphs (headers and most site content are still sans-serif), visited links only change color in softlinks and New Writeups, and the automatic small-ification of SUP and SUB characters (this does not interfere with any small tags already there). List items now have extra space, which is important for short list items and long list items that lack p tags. Otherwise it's pretty much Jukka. Before I begin, I'd like to mention that E2 is not a dry encyclopedia. It's good to have fun with your work here, because something fun to write is easy and enjoyable to read, and approachable by the average person. However, there are a few very simple things that you can do to give your work a nice formatting style without interfering with your own personal writing style. These are all of course optional, but they can make a big difference. 10 Simple Ways to Make Your E2 Writeup Look More ProfessionalAs E2 grows and is indexed by Google, it becomes more and more accessible to the public as an easy-to-understand, plain English knowledge database free of complex, nonstandard formatting or reliance on pictures. However, to be really useful, Everything2 must be taken seriously as a user-written encyclopedia. This means of course careful fact checking, avoidance of hearsay and urban legends, and source citations when necessary. But it also means that it must look professional. First impressions are important, and your article's first impression will be based on how it looks. The second impression is the grammar and spelling. After you've passed those tests, then the reader will evaluate its content. If you can't be trusted to proofread, how can you be trusted to fact check? If you haven't so much as run a spell checker across your work, where else did you take shortcuts? Appearance counts. Most of the articles on E2 are formatted with little more than <p> tags marking paragraphs, plus of course the hard links. This is perfectly acceptable and does a fine job of organizing your content. But HTML contains a complex and rich formatting system capable of so much more. This is blessing and a curse, since it can be difficult to sift through them all to pick out the few really useful ones from the enormous list including many with highly specialized and limited application. Although E2 doesn't support all HTML tags, if you really want your work to shine, there are a few tags that come in very handy. These 10 will cover just about anything you need to make a professional looking node. __________ Use Proper MarkupE2's default layout isn't very good. Headers don't stand out as much as they should, the margins aren't as wide as they could be, there isn't enough whitespace, and there's no good way to indent the first line of your paragraphs. But it is not your job to worry about this! Your responsibilities are to provide content and semantically mark up your work, using the HTML tags as they were intended. They should be used to mark paragraphs, lists, quotes, and emphasis, not to try to force the browser to display things the way you think they should. The truth is, the administration knows that E2's default layout is crap. That's why they created the Zen theme, which is E2's first attempt to modernize the way our articles are laid out, using stylesheets for layout and HTML for markup. Zen may become E2's future default layout, or perhaps the basis for it. Any attempt to fix the layout by abusing HTML tags will (will) cause additional problems later on when the layout is fixed. Without correct markup, your pseudo-layout hacks will make what looks lovely in Jukka incompatible with any future design changes. Proper use of markup will ensure compatibility with all future layout changes. Frequently abused tags include , <blockquote>, and <ul>. Use these tags as they were intended. I have also reversed my previously pro stance on <p align=justify> — this is another layout issue and should be left up to the stylesheet, not the HTML. And don't forget to close your tags when you're done with them. <p>Proper markup of your paragraphs means putting a <p> at the beginning of each paragraph and a </p> at the end, like this example. It is important to note that this means "the enclosed text is a paragraph" — it does not mean "put a double space here"! Do not mark off paragraphs with <br><br> — this does not mark the text as a paragraph and will not be recognized as such by stylesheets.</p> <pre>Although it looks similar to <tt> in that it puts the text in a monospaced font, the <pre> tag is used for a different purpose. <tt> is used on individual words or short phrases. <pre> is used when there are several lines of text which need to be lined up neatly. This is often used in ASCII art and also to organize text into a table format because it overrides the way HTML ignores whitespace, instead maintaining the spaces and carriage returns. Do not use the TAB key with the <pre> tag, because the way the text lines up will vary depending on the specific font the reader's browser uses to display monospace. Regular spaces will always display correctly. Be aware that some formatting tags such as <sub> or <small> will change the font size and disturb the way the text lines up. Column 1 | Column 2 ----------+---------- Item A | 53.26 Item B | 2.687 Item C | 156.2 <em> (or <i>)Italics adds emphasis. It says this is the key word in the sentence that holds the most importance to its meaning. You should never use ALL CAPS or *asterisks* for emphasis, as this implies that you do not have access to the appropriate formatting tools. When italicizing a word followed by punctuation, it is often more clear and readable to include the punctuation in the italics, especially in the case of the colon, semicolon, apostrophes and double quotes. Italics can also be used to identify foreign words in a sentence, giving your work a certain je ne sais quoi. <strong> (or <b>)Boldfacing a word or short phrase draws attention to it. This is useful for minor headers and key vocabulary words. Bold text makes it easy to skim a long article for the part you are looking for. In mathematics, it also denotes that the variable is a vector rather than a scalar value. This tag should not be used to add emphasis to a word. That's what italics are for. Boldface should also not be used in conjunction with <big> to make headers. The <h2> and <h3> tags will take care of that. <h2> and <h3>Headers for sections of an article should be marked off by <h2> or <h3>. These tags display text as large and bold and separated from the rest of the text (there is no need to use <p> or <br>). 3 makes the text stand out as slightly larger, and 2 makes the text much larger, in fact distractingly so, so in general use 3 unless your work is organized such that it needs additional heading styles. The heading at the top of this writeup is in <h3> tags and the sub-headings are <h5>. Although the full range is 1–6, supposedly listed in decreasing size, 1 is not displayed as larger than 2 in E2's default layout (this will likely be fixed in the future). Boldfaced text should only be used to mark minor points inside of paragraphs, not to mark sections. — The em dash is longer than a hyphen or an en dash and is used when a comma or even a semicolon just won't suffice to drive home just how separated a thought is from the rest of the sentence in which it appears. It is also used in dialogue to denote that someone has been cut off in the middle of what he was saying. Do not confuse this usage with the ellipsis, which denotes that a thought has simply trailed off without being finished. Use the em dash where you would otherwise have used two hyphens: --
–The en dash is halfway between a hyphen and an em dash and is generally used for displaying a range, such as June 27–July 1. Hyphens are acceptable in this case but the en dash is more strictly correct. <tt>, <var>, <kbd>, and <code> Teletype style puts a selection in a fixed width, or monospaced, font, usually to differentiate it from the rest of the text. This is often handy for making variable names or an example line of programming code stand out in a line of text. It is also commonly used to denote a command to be typed into a computer, since this clearly marks the beginning and end of what needs to be typed without confusing brackets or quotes which may or may not be part of the text to be typed. For example: <small>The small tag can be used to mark off a section of text that doesn't really "belong" there, such as notes directly to the reader from the author. I've done this from time to time myself. It is also useful for visually marking off the footnotes or references cited as a separate entity from the rest of the article. Do not use other formatting such as boldface or italics in conjunction with the <small> tag as it becomes very difficult to read. Although the <small> tags can be nested to make the text smaller and smaller, two result in eye strain and three becomes completely unreadable. This does have one interesting use, however, in that it can be used to intentionally hide text, such as movie plot spoilers and answers to riddles. To read it, the reader will have to copy-paste the section into Notepad or some other program which strips off the formatting. If you keep the selection short, it can be pasted directly into the browser's location bar, which is most convenient. <u>Underlining has limited usefulness on the World Wide Web, since it can cause confusion with hyperlinks and does little that boldface or italics cannot accomplish. In general, underlining is only useful for citing certain types of sources in accordance with MLA guidelines. Unlike italics, when underlining a word that ends with punctuation, the underline often obscures commas, periods, and other low punctuation, so the underlining should be ended before the punctuation mark. _______________ After you get comfortable with these tags, you'll occasionally run across some new formatting used by another noder and wonder "Now how did he do that?" The best way to find out is to use your browser's view source menu or right click option to view the HTML source. Now an E2 page is very long and the part you want to see is in the middle, so you need an easy way to find the part you're looking for. You need a short and unique phrase which does not have additional formatting in it, which appears near the formatting you want to use. Use ctrl-f or apple-f to search for that phrase in the HTML source (if the phrase you picked has formatting in it, you won't find it because the code you are searching will have the formatting tags interrupting the phrase). Then it's a good idea to search E2 for that tag to see what your various options are and how to use it properly. Over a few weeks, you can really build up an impressive HTML vocabulary this way. Don't forget about E2's list of special symbols you can use either. Bitriot informs me of an easier way to check a writeup's HTML formatting on E2. Take the URL and append &displaytype=xmltrue to the end of it. This will bring up the code E2 uses to display the writeup information only, without the standard formatting used in the rest of the site getting in the way (such as the nodelets). This makes it easier to find the formatting you are looking for in an E2 node. For example: One last note: Always close your tags in the reverse order that you opened them. Browsers that strictly follow the HTML standards will sometimes not display your formatting correctly if you don't. I see this happen most often with <blockquote> text and <ol> and <ul> lists, and it can sometimes lead to the entire bottom half of your writeup being displayed in italics or boldface. ♪= ♪ ♫= ♫ Ə Ə ə ə ә ә Ә Ә
̀ – ͎
|
User Bookmarks:
- Honda
- escutcheon
- jukka e2node displayfull page
- Statistics Data
- South Park (thing)
- Rotating a String solution
- Ninjai: The Little Ninja
- I'm tired of all this, I just wanted the damned E2 Poster
- Congenital absence of the vagina
- I have good reason to be thirsty today
- clientdev: new XML ticker output
- Prisoner of War
- Integrated circuits: a technology fable
- WaldemarExkul
- bakufu
- O Freunde nicht diese Töne
- German Airships in World War I
- Content_Salvage
- totalitarianism (idea)
- My Big Writeup List
- The Galveston Hurricane of 1900
- sword (thing)
- Trace Beaulieu (person)
- cantaloupe (thing)
- The Flintstones Spin-offs
- Winchester Repeating Firearms
- Webster's word warehouse
- SweetViolet
- Immune response (thing)
- polygraph test (thing)
- magneto-optical trap (thing)
- Pappus-Guldinus Theorem (idea)
- stem cell (thing)
- Skip-Bo (thing)
- Resonance (thing)
- Mohammed al-Dura (person)
- tonal language (thing)
- deathwatch beetle (thing)
- Annealing (idea)
- why you should get a diesel powered vehicle (thing)
- Camel (thing)
- liquid nitrogen (thing)
- Jack Russell Terrier (thing)
- Everyone has a 'true ghost story' story (person)
- Swedish (thing)
- Webster's Infirmary
- Islamic banking (essay)
- Feminist Horror Film Theory (idea)
- decompression sickness (thing)
- Thelonious Monk Quartet with John Coltrane at Carnegie Hall (review)
- Arrangement of Library Materials (idea)
- Three Views of the Totalitarian State (idea)
- State of Nature (place)
- Child of the Night
- Miss American Pie: A Century of Pizza in America (thing)
- Beef (thing)
- E2 Documentation
- Helper Bot Messages
- The Jill Dando Murder (event)
- Datagate
- Thomas Paine (person)
- Category Nodes
- Smoked salmon carbonara
- Plata Yvyguy
- Batalhăo de Operaçőes Policiais Especiais (thing)