Metainformationen zur Seite
Dies ist eine alte Version des Dokuments!
DokuWiki
- Select everything, and do Ungroup Shift+Ctrl+G 5 times to remove all those unnecessary nested groups.
Ctrl-a
Shift+Ctrl+G - Do Path > Stroke to Path to turn the horizontal stroke into a path.
Ctrl+Alt-C - Now you can do Path > Combine, or alternatively do Path > Union if you want to get rid of any overlaps.
Ctrl++ - Do File > Cleanup document
- To export as optimised SVG, do File > Save as, then select „Optimised SVG“ from the file type dropdown.
Shift+Ctrl+S - 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 '
'; </PHP>