Boards Usage Guide - Part 1: Boards Markup

Modmichaelchan·1/7/2019, 8:22:18 PM·51 votes·92,224 views

There's an ample amount of markup tools at your disposal, and with the rollout of Boards Updates 5.3.0, you have more customization options under your belt. This guide will go over some of the basics of making your post look clean and organized, with markup as the primary tool to do so.

####🐒 The Basics: Bold, Italics, Strikethrough 🐒

The Boards allows you to bold, italicize, and strikeout your text. These allow you to add some subtle emphasis to your text, as appropriate. You can use these three tools by highlighting your text and clicking the B, I, S buttons in the toolbar, or you can write the markup manually. If you choose to input them manually, here's the markdown code:

  • Bold can be achieved by putting two asterisks on both sides of the text:
  • **Some text here**
  • Italics can be achieved by surrounding text on each side with an underscore or an asterisk:
  • *Some text here*
  • or _Some text here_
  • Strikethrough can be achieved by surrounding text with a pair of tilde's (~):
  • Some text here
  • You can mix, match, and stack them together:
  • Some text here

####🐒 Links 🐒

Links are pretty simple to implement. If you want to link something, you can drop the full link, and the Boards will automatically hyperlink it for you; but if you want linkable text, you can either use the "link" button in the toolbar, or you can use the Boards markdown code:

  • [Some text here](Your full link here, including the http/https) --> League of Legends
  • [**Some text here**](Your full link here, including the http/https) --> League of Legends

Notice that you can bold or italicize your links for added emphasis!

As an additional note: Linking an image will more often than not embed the image rather than showing the link. To display it as a link, you'll have to use the url markdown.


####🐒 Blockquotes 🐒

Blockquotes have a number of purposes, from separating and segmenting content, to actually showing a quote.

To use blockquotes, you simply have to put a greater-than sign (>) at the beginning of each paragraph/line you'd like in the quote. Note that if you have two blockquotes consecutively, the blockquotes will merge. You can bypass this by putting an empty link or a html space entity   as a line-break between the two quotes:

One quote

Another quote


####🐒 Images & Videos 🐒

Images are a little bit nuanced, since some sites embed properly, some don't, and some are embedded differently than others. I'll do my best to go over the top used sites.

IMGUR: This is the image hosting site of image hosting sites. With drag-and-drop, no login needed uploading, you'll have your image in no time.

In order to embed the images properly, you'll want to right-click on the image on the imgur page, and click "Copy image address", and paste it on the Boards.

https://puu.sh/CtgqM/6e8c04b9b5.png

BUT YOU'RE NOT DONE YET! The Boards will use the imgur embed wrapper, which probably makes things look different than what you wanted. On the end of your link, add a little "[]". In all, your link should look like:

Result: https://i.imgur.com/vDgWeU8.png[]

Perfection.


Puush.me Gyazo: Want to upload a screenshot quickly? With Puush, just use your keybind, select your screenshot region, and the uploaded image URL will be automatically added to your clipboard. Paste your link to the Boards, and you're good to go. Best of all, it's free!


gfycat or YouTube: If you're looking to upload a short video, I'd recommend using either gfycat or YouTube. Imgur, unfortunately, inconsistently embeds MP4's. Look how clean these embeds are: (first one is gfycat, second is YouTube)

https://gfycat.com/incompletefancydotterel

https://www.youtube.com/watch?v=Qj48qHM1MXE


####🐒 Lists 🐒

There are two types of lists: ordered lists and unordered lists.

As indicated by it's name, an ordered list is a list of items, prepended by a incrementing numbers. You can create an ordered list by simply creating a series of items started by incrementing numbers:

  1. First item
  2. Second item
  3. Third item

An unordered list can similarly be created by replacing the numbers with asterisks:

  • First item
  • Second item
  • Third item

You can add indents to an unordered list by incrementing spaces before the asterisk:

  • First item
  • Second item
    • Third item

####🐒 Headers 🐒

By default, the Boards comes with 3 different levels of headers:

Heading 1

Heading 2

Heading 6

You can use these headers by putting the corresponding number of pound/hash symbols prior to the text you'd like as a header. The Boards updates now more than doubles your heading possibilities! The new headers appear as follows:

#Heading 1 ##Heading 2 ####Heading 4 #####Heading 5 ######Heading 6

These headers are achievable by putting the corresponding number of pound/hash symbols AND wrapping your text as such:

  • **_TEXT GOES HERE_**

As a tip, you can wrap a header in a quote to make it pop out more, similar to how it's done in each section of this thread.


####🐒 Text Highlighting 🐒

Another new feature that'll allow you to make certain words or phrases stand out is the text highlighting feature. Right now, there are 4 different colors you can use: green, purple, blue, and red. Here's how you can implement them:

  • Green can be used by using the format:
  • **_*TEXT HERE*_**
  • Purple can be used by using the format:
  • _**TEXT HERE**_
  • Blue can be used by using the format:
  • _*TEXT HERE*_
  • Red can be used by using the format:
  • _***TEXT HERE***_

####🐒 Spoilers 🐒

You can use the spoiler feature by wrapping your text as follows:

  • ### *TEXT HERE*

This will show something like:

TEXT HERE

If you're looking to create a multi-line spoiler, you can separate lines by forcing a line break with a empty link, for instance:

  • ###*TEXT HERE But wait, there's more*

###TEXT HERE But wait, there's more


####🐒 Tables 🐒

You probably won't use tables too often during your Boards tenure, but it really does clean things up when used right.

h1h2
b1b2

####🐒 Character Escaping 🐒

Character escaping is the process you'll use when you want to use characters that are normally used within the markup language. For instance, if I wanted to show you not striken instead of striken, I'd have to use character escaping. There are two ways to escape characters; however, using the HTML entity is the more consistent method.

Method 1: Backslash Method This is the standard escape method that you'll see in most programming languages. All you need to do is put a backslash in front of any characters you'll want to escape, and you'll see the symbol (most of the time).

  • \*
  • In this example, I've escaped both the backslash and the asterisk by putting a backslash before each character

Method 2: HTML Entity/Hex Code/HTML Code Instead of using the literal character (ie. * > # ~), you can use an equivalent string of characters. For instance, a tilde could be the string: ~~~~~

You can use the HTML entity, hex code, or HTML code for these characters; you can use an escaper to find the equivalents here: Full Escaper

91 Comments

PaffWasTaken1/7/2019, 10:23:00 PM11 votes

Those highlighting ~~ formats are~~ ~~ quite hard~~ ~~ to remember~~

Will there be a shortcut or a way to have easier access to them? At this point, direct css would be simpler

ModCaptainMårvelous1/8/2019, 4:46:51 AM7 votes

holy fuck boys

we got colors now

Dracocrash1/8/2019, 2:24:31 PM5 votes

Lulu approves

fire2631/7/2019, 9:53:45 PM4 votes

Since when was this a thing?

Monstermushmush1/8/2019, 12:19:20 AM4 votes

Can you make them into buttons please? These are pretty hard to remember

Febos1/7/2019, 8:31:53 PM3 votes

* Okay, this is epic! *

When will this be avaiable on the other boards, in particular EU ?

NepgearDesu1/7/2019, 11:04:31 PM3 votes

I might begin writing everything that way now. Thanks for this!

DrCyanide1/7/2019, 8:46:20 PM3 votes

PIN IT!

Kinda sad the colors are so complex to get in, but I kinda get it too.

Rαy1/8/2019, 12:21:53 AM2 votes

Very informative, thanks!

This will probably encourage some people to post more as well.

KFCeytron1/8/2019, 4:17:41 AM2 votes

If you want to include the symbols that create bold/etc. without actually using that formatting (for example, 24=18 vs 2*4=1*8), you can escape the character with a backslash or use the HTML entity character code (handy tool here).

Linkable text cannot be followed by a closing parenthesis, so the way I did it just now is to use the HTML entity character code for that, which is ")".

You can also separate block quotes with the HTML entity of a whitespace character, such as a non-breaking space.

hi

 

there

Source:

> hi

 

> there

If you have an Imgur gif that's actually only a gifv with no actual corresponding gif, it won't embed properly. You'll just get the first frame that needs to be clicked on to view the video on Imgur. Once you have a gifv that does have a corresponding gif, you may or may not need to add "[]" or "[/img]" after the link for it to work.

When creating an ordered list, don't use incrementing numbers. Markdown will take care of that part for you. All you have to do is use any number, such as 0, and it'll parse it as an ordered list.

  1. Alice
  2. Bob
  3. Charlie

Source:

0. Alice 0. Bob 0. Charlie

There is no such thing as a "hashtag" symbol. The # symbol is known as a pound sign, hash symbol, or octothorpe. Services such as Twitter use that symbol to indicate tags, creating the new phrase "hashtag." The character itself is still simply a hash symbol, though.

The syntax for background colors is getting into Morse code territory. It reminds me of flashlights with lots of features and only one button, so you end up following a flowchart to program the thing (I am not kidding, by the way). Markdown hasn't totally replaced markup languages like HTML and XML for good reason. :P

How does one create a table?

I'm going to link once more to the tool I wrote to escape and unescape text, as it takes care of that for you instead of requiring you to manually look everything up in a table. Note that it actually retains a reasonable page layout on mobile! Yay!

https://www.tigerhawkt3.com/full_escaper.html

Alzon1/7/2019, 8:43:12 PM2 votes

Bookmarked.

King Jarvan1/7/2019, 9:19:01 PM2 votes

###Does it work omg

Jerry SeinfeId1/7/2019, 9:51:56 PM2 votes

🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒🐒

######i love it.

Mattk43551/7/2019, 10:30:07 PM2 votes

Looks at trending page of boards

###Ooh, new features

Also, ty Wuks [katarina-love]

Modl Ryden l1/7/2019, 11:28:14 PM2 votes

#M O R E #F E A T U R E S

Sexy Jack Rabbit1/7/2019, 11:29:50 PM2 votes

Will this be pinned? Plz

Cheini1/8/2019, 12:10:14 AM2 votes

am ignore me pls xd

 

###* https://goo.gl/images/EeiVB5 * img


###* http://www.youtube.com/watch?v=henzKOC78nw * vid


###* Ancient lg * link

 

###* Amumu *

lonely past the nbsp wall ;((

 

###* Error code i4: <Wrong elo!>   To resolve this error, plese queue as Yasuo more often. Thanks! * (cant embed stuff inside each other, aside new-line hyperlinks, here comes the empty link tag! remember to terminate the warning tag on each line ooor it wont count the new lines either)

 

###* http://upload.wikimedia.org/wikipedia/commons/thumb/2/27/WhereRainbowRises.jpg/300px-WhereRainbowRises.jpg * pic in warning tag?.. --nop

&nbsp;
#[_***~~Riot Cheini~~***_](http://boards.na.leagueoflegends.com/en/player/EUNE/Cheini)

######_**~~[Prio!](link)~~**_ put it in the link brackets

#**_*~~✅~~*_**






---

# _***~~R~~***_
#&nbsp;**_~~A~~_**
##&nbsp;**_~~I~~_**
####&nbsp;**_~~N~~_**
#####&nbsp;**_~~B~~_**
#_*~~O~~*_
# _**~~W~~**_
(lux dislikes this xd)
&nbsp;
#&nbsp; _***~~&nbsp; ~~***_
#&nbsp; **_~~■~~_**
##&nbsp; **_~~■~~_**
####&nbsp; **_~~■~~_**
#####&nbsp; **_~~■~~_**
#&nbsp;_*~~&nbsp; ~~*_
#&nbsp;_**~~&nbsp; ~~**_

&nbsp;
> ###* [~~don't~~ click me!](https://www.microsoft.com/en-us/download/internet-explorer.aspx) *

okay this is a legit bug! (link format, ~-ed "don't") wait it isnt because of the link but... why is it sending the new tag on a separate line.. :d oh and italic rip :( though the star tag goes for... (no tags on the last line!)

> ###* [Board Formatting 101](https://boards.na.leagueoflegends.com/en/c/miscellaneous/YHPBc6k3-board-formatting-101) [](http://.) &nbsp; * -- Old formattig table!

&nbsp;
---
&nbsp;
wuks should i try to get some lp playing morde? xD
RandomIsHere1/16/2019, 2:40:19 PM1 votes

A big thanks for pushing the update to the french boards !

But as there was no translations in french, i did mine, hope it looks good : https://boards.euw.leagueoflegends.com/fr/c/guides-trucs-et-astuces-fr/OxHm8r0x-mise-a-jour-du-forum-guide-de-la-530

Hotarµ3/2/2019, 9:12:12 PM1 votes

test

ignore pls

test2

##test3

####test3

red

#####test!

#blu"


Daddy Gabriel3/22/2019, 2:21:59 PM1 votes

Do text highlights not work in board posts?

Toons5/23/2019, 6:43:16 AM1 votes

Testing confirmed with moderation - Disregard Clean asdfasdfasdfasdf asdf clean

https://sessions.merch.riotgames.com/rso/session/logout

legacy dude6/23/2019, 6:20:49 PM1 votes

i think that they should read comments before they tear down a discussion. i posted something and accidentally put this in the wrong section (story art and sound). i posted a comment apologising for the mistake and to ignore it. it still got torn down

Ice Weasel X7/23/2019, 3:30:22 PM1 votes

I noticed some of the customized markup demonstrated here (such as the colored text) doesn't work on all of the other boards. Previews for color markup show correctly here, but pasted directly to another board it shows as bold, italicized, stricken text. I presume new sub boards are being created from a default template that hasn't had these updates applied, or other boards are explicitly preventing excess markup (which kind of invalidates all this work).

Terozu8/3/2019, 11:11:43 PM1 votes

Elvine was raised on the precipice of both the sunken city of Zaun and the towering city of Piltover. She spent her days touring the boundary markets, finding nooks and crannies leading to slim allies and secret rooms. While exploring the twin cities she was born to, she often heard talk from Zaunites and Piltovans alike, provokings and insults thrown in both directions. She could never understand why, however, sure the Zaunites were often covered in rust, the Piltovans always wore those ridiculous garbs and the Kindred know both stunk to high heavens in their own ways, whether the stench of sump and ash or the overwhelming scent of artificial flowers and other so called exotic scents. - Both groups would often attempt to lay claim to superiority, sometimes to ridiculous lengths. Sometimes they were silly fun, like the time someone stole a trove of Piltovan signs, but other times they were horrid like the time she'd heard a Piltovan ball had been subjected to a terrorist attack, or the Piltovan's games of making promising Zaunites their entertainment by crushing their hopes under the guise of 'formalities'. In the end, the cities were two sides of a single coin, neither perfect, each had their own ups and downs. - Elvine, though, found she didn't seem to fit in with either city for her own reasons, the biggest one being the odd effect she had on Chemtech and Hextech devices. That being, they simply wouldn't function when she was in close proximity to the power source. She would hear a whispering in her ear and then, nothing, whatever device she held would become inactive until she let go of it. It is for this reason she often found herself making her way north whenever she could, away from the confines of Piltover's towers or Zaun's steel. - As she aged she found herself no longer exploring the hidden paths of the boundary markets and instead spent her days exploring the sparkling cerulean coasts, and the knotted forests within the cities' northern territories. One such day she boarded a hexdraulic conveyor, as she always did she began to hear a a familiar whispering in her ear. As the conveyor ascended a Zaunite suddenly drew a knife on the other passengers, as he approached her the whispering became a scream and she lost consciousness. - When she awoke, she found herself outside the gates of Piltover, laying in a stream, near the coast. The whispering gone, in it's place she could see strange creatures around her. Spirits of nature made manifest, seemingly everywhere around her. She began her explorations of the world around her anew.

TEXT HERE

Modi9/8/2019, 7:16:59 PM1 votes

Unless the boards back-end converts the html entities (˜) into their literals, this should fix the display of these sections

#Heading 1 ##Heading 2 ####Heading 4 #####Heading 5 ######Heading 6

(Heading 3 not available due to how spoiler works)

These headers are achievable by putting the corresponding number of pound/hash symbols AND wrapping your text as such:

#**_˜˜Heading 1˜˜_** ##**_˜˜Heading 2˜˜_** ####**_˜˜Heading 4˜˜_** #####**_˜˜Heading 5˜˜_** ######**_˜˜Heading 6˜˜_**

As a tip, you can wrap a header in a quote to make it pop out more, similar to how it's done in each section of this thread.

Another new feature that'll allow you to make certain words or phrases stand out is the text highlighting feature. Right now, there are 4 different colors you can use: green, purple, blue, and red. Here's how you can implement them:

  • Green can be used by using the format:
  • **_*˜˜GREEN TEXT HERE˜˜*_**
  • Purple can be used by using the format:
  • _**˜˜PURPLE TEXT HERE˜˜**_
  • Blue can be used by using the format:
  • _*˜˜BLUE TEXT HERE˜˜*_
  • Red can be used by using the format:
  • _***˜˜RED TEXT HERE˜˜***_
Busty Demon10/30/2019, 5:50:16 AM1 votes

The Dreamwalker12/10/2019, 9:23:10 PM1 votes

Just Testing This

Sarah

Gun Goddess Miss Fortune

Elementalist Lux

I love Miss Fortune, can you tell?

#Shia

#S Ser

Bârd1/14/2020, 8:28:23 PM1 votes

Are the colored texts still working?

When I do it like it's shown here I just get this