Metainformationen zur Seite
  •  

Dies ist eine alte Version des Dokuments!


DokuWiki

  1. Select everything, and do Ungroup Shift+Ctrl+G 5 times to remove all those unnecessary nested groups.
    Ctrl-a
    Shift+Ctrl+G
  2. Do Path > Stroke to Path to turn the horizontal stroke into a path.
    Ctrl+Alt-C
  3. Now you can do Path > Combine, or alternatively do Path > Union if you want to get rid of any overlaps.
    Ctrl++
  4. Do File > Cleanup document
  5. To export as optimised SVG, do File > Save as, then select „Optimised SVG“ from the file type dropdown.
    Shift+Ctrl+S
  6. In the Optimsed SVG Output dialog set up the items you want to keep and which you want to remove. Here are my settings

Installation

HowTos

JavaScript

Einbetten

HTML
<html> This is some <span style="color:red;font-size:150%;">inline</span> HTML</html>

This is some inline HTML

<HTML> <p style="border:2px dashed red;">And this is some block HTML</p> </HTML>

And this is some block HTML

PHP
<php>
  echo 'The PHP version: ';
  echo phpversion();
  echo ' (generated inline HTML)';
</php>

<php> echo 'The PHP version: '; echo phpversion(); echo ' (generated inline HTML)'; </php>

<PHP>
  echo '<table class="inline"> <tr> <td>The PHP version inside a block level element: </td>';
  echo '<td>'.phpversion().'</td>';
  echo '</tr></table>';
</PHP>

<PHP> echo '

<tr> <td>The PHP version inside a block level element: </td>'; echo '<td>'.phpversion().'</td>'; echo '</tr>

'; </PHP>

JavaScript
<JS>
let inhalt = 'Hallo Welt! (block JavaScript)';
document.write(inhalt);
</JS>

Testseite