<code>foo = "bar";</code> | Inline code with the default syntax highlighting mode. |
<code> foo = "bar"; baz = "foz"; </code> | Code block with the default syntax highlighting mode. |
<code lang="drupal6" linenumbers="normal"> foo = "bar"; baz = "foz"; </code> | Code block with syntax highlighting for Drupal 6 source code and normal line numbers. |
<code language="drupal6" start="23" fancy="7"> foo = "bar"; baz = "foz"; </code> | Code block with syntax highlighting for Drupal 6 source code, line numbers starting from 23 and highlighted line numbers every 7th line. |
<drupal5> foo = "bar"; baz = "foz"; </drupal5> | Code block with syntax highlighting for Drupal 5 source code. |
<drupal5 start="23" fancy="7"> foo = "bar"; baz = "foz"; <drupal5> | Code block with syntax highlighting for Drupal 5 source code, line numbers starting from 23 and highlighted line numbers every 7th line. |