/[svn]/doc/docbase/writing_docs/01_writing_docs.html
ViewVC logotype

Diff of /doc/docbase/writing_docs/01_writing_docs.html

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2732 by schoenebeck, Sun Apr 26 20:54:00 2015 UTC revision 2738 by schoenebeck, Tue Apr 28 17:24:16 2015 UTC
# Line 3  Line 3 
3      <meta name="author" content="Christian Schoenebeck">      <meta name="author" content="Christian Schoenebeck">
4      <title>Writing Docs</title>      <title>Writing Docs</title>
5      <meta name="description" content="Writing new articles for this site.">      <meta name="description" content="Writing new articles for this site.">
6        <link rel="stylesheet" href="http://doc.linuxsampler.org/css/preview.css">
7        <script type="text/javascript" src="http://doc.linuxsampler.org/js/preview.js"></script>
8    </head>    </head>
9    <body>    <body>
10      <p>      <p>
# Line 502  Line 504 
504        as described next.        as described next.
505      </p>      </p>
506    
507        <note>
508          Automatic syntax highlighting is currently available for the
509          <ul>
510            <li><a href="nksp.html">NKSP real-time instrument script language</a></li>
511            <li>HTML markup language</li>
512          </ul>
513          If you need another source code language, just tell
514          <a href="http://www.linuxsampler.org/developers.html#Schoenebeck">Christian</a>
515          and he will add the required module for any kind of language
516          (even the most exotic one) on our server in short time.
517        </note>
518    
519      <h3>Stand-Alone Code</h3>      <h3>Stand-Alone Code</h3>
520      <p>      <p>
521        If you put your code block outside of paragraphs, that is between        If you put your code block outside of paragraphs, that is between
# Line 582  end on Line 596  end on
596        without any syntax highlighting.        without any syntax highlighting.
597      </note>      </note>
598            
     <note>  
       Automatic syntax highlighting is currently available for the  
       <ul>  
         <li>NKSP real-time instrument script language  
         <li>HTML markup language</li>  
       </ul>  
       If you need another source code language, just tell  
       <a href="http://www.linuxsampler.org/developers.html#Schoenebeck">Christian</a>  
       and he will add the required module for any kind of language  
       (even the most exotic one) on our server in short time.  
     </note>  
       
599      <h3>Metaphors</h3>      <h3>Metaphors</h3>
600      <p>      <p>
601        You might have noticed, we have used a special kind of <code>??place-holder??</code> for        You might have noticed, we have used a special kind of <code>??place-holder??</code> for
# Line 763  end on Line 765  end on
765        Tables are written like ordinary HTML tables. That is:        Tables are written like ordinary HTML tables. That is:
766      </p>      </p>
767      <code>      <code>
768  <table>  &lt;table&gt;
769    <tr>    &lt;tr&gt;
770      <th>Name</th> <th>Description</th>      &lt;th&gt;Name&lt;/th&gt; &lt;th&gt;Description&lt;/th&gt;
771    </tr>    &lt;/tr&gt;
772    <tr>    &lt;tr&gt;
773      <td>Foo</td> <td>Some text.</td>      &lt;td&gt;Foo&lt;/td&gt; &lt;td&gt;Some text.&lt;/td&gt;
774    </tr>    &lt;/tr&gt;
775    <tr>    &lt;tr&gt;
776      <td>Bar</td> <td>And more text.</td>      &lt;td&gt;Bar&lt;/td&gt; &lt;td&gt;And more text.&lt;/td&gt;
777    </tr>    &lt;/tr&gt;
778    <tr>    &lt;tr&gt;
779      <td>Thing</td> <td>And that's it.</td>      &lt;td&gt;Thing&lt;/td&gt; &lt;td&gt;And that's it.&lt;/td&gt;
780    </tr>    &lt;/tr&gt;
781  </table>  &lt;/table&gt;
782      </code>      </code>
783      <example>      <example>
784        <table>        <table>

Legend:
Removed from v.2732  
changed lines
  Added in v.2738

  ViewVC Help
Powered by ViewVC