[2011-THE YEAR IN REVIEW]
See what the world watched on YouTube in 2011 with YouTube Rewind.
You can goto YouTube Rewind timeline from here: YouTube-Rewind-2011
[sourcecode language="your_language"] //your code here [/sourcecode]
[sourcecode language="python"] import turtle # allows us to use the turtles library window = turtle.Screen() # creates a graphics window rightAngle = turtle.Turtle() # create a turtle named rightAngle rightAngle.forward(150) # tell rightAngle to move forward by 150 units rightAngle.left(90) # turn by 90 degrees rightAngle.forward(75) # complete the second side of a rectangle window.exitonclick() # graphics window wait for your click to exit [/sourcecode]
import turtle # allows us to use the turtles library window = turtle.Screen() # creates a graphics window rightAngle = turtle.Turtle() # create a turtle named rightAngle rightAngle.forward(150) # tell rightAngle to move forward by 150 units rightAngle.left(90) # turn by 90 degrees rightAngle.forward(75) # complete the second side of a rectangle window.exitonclick() # graphics window wait for your click to exit
- actionscript3
- bash
- coldfusion
- cpp
- csharp
- css
- delphi
- erlang
- fsharp
- diff
- groovy
- html
- javascript
- java
- javafx
- matlab (keywords only)
- objc
- perl
- php
- text
- powershell
- python
- r
- ruby
- scala
- sql
- vb
- xml
The shortcode also takes variety of parameter to customize output, but they are optional:
- autolinks (true/false) — Makes all URLs in your posted code clickable. Defaults to true.
- collapse (true/false) — If true, the code box will be collapsed when the page loads, requiring the visitor to click to expand it. Defaults to false.
- firstline (number) — Use this to change what number the line numbering starts at. It defaults to 1.
- gutter (true/false) — If false, the line numbering on the left side will be hidden. Defaults to true.
- highlight (comma-seperated list of numbers) — You can list the line numbers you want to be highlighted. For example “4,7,19?.
- htmlscript (true/false) — If true, any HTML/XML in your code will be highlighted. This is useful when you are mixing code into HTML, such as PHP inside of HTML. Defaults to false and will only work with certain code languages.
- light (true/false) — If true, the gutter (line numbering) and toolbar (see below) will be hidden. This is helpful when posting only one or two lines of code. Defaults to false.
- padlinenumbers (true/false/integer) — Allows you to control the line number padding. true will result in automatic padding, false will result in no padding, and entering a number will force a specific amount of padding.
- toolbar (true/false) — If false, the toolbar containing the helpful buttons that appears when you hover over the code will not be shown. Defaults to true.
- wraplines (true/false) — If false, line wrapping will be disabled. This will cause a horizontal scrollbar to appear for long lines of code.