]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4681 Update Markdown documentation page with latest features
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Fri, 9 May 2014 12:40:24 +0000 (14:40 +0200)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Fri, 9 May 2014 13:15:53 +0000 (15:15 +0200)
sonar-server/src/main/webapp/WEB-INF/app/views/markdown/help.html.erb

index 5f56037851cc768f37c9fbff700e13f159b24d8a..fe0b4702f53d52cd23f9cb1762c46c3c2f43b381 100644 (file)
       <td><a href="http://sonarqube.org">http://sonarqube.org</a></td>
     </tr>
     <tr class="even">
-      <td valign="top">* bulleted point</td>
-      <td class="discussionComment">
+      <td valign="top">* first item<br>
+      * second item</td>
+      <td class="discussionComment" style="background-color: inherit">
         <ul>
-          <li>bulleted point</li>
+          <li>first item</li>
+          <li>second item</li>
         </ul>
       </td>
     </tr>
+    <tr class="odd">
+      <td valign="top">1. first item<br>
+      1. second item</td>
+      <td class="discussionComment" style="background-color: inherit">
+        <ol>
+          <li>first item</li>
+          <li>second item</li>
+        </ol>
+      </td>
+    </tr>
+    <tr class="even">
+      <td valign="top">
+        = Heading Level 1<br>
+        == Heading Level 2<br>
+        === Heading Level 3<br>
+        ==== Heading Level 4<br>
+        ===== Heading Level 5<br>
+        ====== Heading Level 6<br>
+      <td valign="top">
+      <h1>Heading Level 1</h1>
+      <h2>Heading Level 2</h2>
+      <h3>Heading Level 3</h3>
+      <h4>Heading Level 4</h4>
+      <h5>Heading Level 5</h5>
+      <h6>Heading Level 6</h6>
+      </td>
+    </tr>
     <tr class="odd">
       <td valign="top">``Lists#newArrayList()``</td>
       <td><code>Lists#newArrayList()</code></td>
 <code>
   // code on multiple lines
   public void foo() {
-  // do some logic here
+    // do some logic here
   }
 </code>
       </pre>
       </td>
     </tr>
+    <tr class="odd">
+      <td valign="top">
+        Standard text<br>
+        > Blockquoted text<br>
+        > that spans multiple lines<br>
+      </td>
+      <td valign="top">
+      <p>Standard text</p>
+      <blockquote>Blockquoted text<br>
+      that spans multiple lines<br></blockquote>
+      </td>
+    </tr>
+    <tr class="even">
+      <td valign="top">
+        [SonarQube™ Home Page](http://www.sonarqube.org)
+      </td>
+      <td valign="top">
+      <a href="http://www.sonarqube.org" target="_blank">SonarQube™ Home Page</a>
+      </td>
+    </tr>
     </tbody>
   </table>
 </div>