diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-06 08:33:50 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-06 08:33:50 -0700 |
commit | 3e687f1a8ccb1cd0d52a966005551d528ca141df (patch) | |
tree | 30d433ba19ec49808cc0f0de8a161835ad5f29c9 /de-de | |
parent | 9fa4b5af80f1cd7fe2469c198d02a21e4f8884a1 (diff) |
Remove leading and trailing empty lines in code blocks
Diffstat (limited to 'de-de')
26 files changed, 6 insertions, 33 deletions
diff --git a/de-de/asciidoc-de.html.markdown b/de-de/asciidoc-de.html.markdown index d0a62c66..c12c2479 100644 --- a/de-de/asciidoc-de.html.markdown +++ b/de-de/asciidoc-de.html.markdown @@ -87,7 +87,6 @@ Abteilungstitel ==== Level 3 <h4> ===== Level 4 <h5> - ``` Listen diff --git a/de-de/bc.html.markdown b/de-de/bc.html.markdown index 49a2878d..d2c6e9ae 100644 --- a/de-de/bc.html.markdown +++ b/de-de/bc.html.markdown @@ -96,6 +96,7 @@ print a[0], " ", a[1], " ", a[2], " ", a[3], "\n" quit /* Füge diese Codezeile hinzu, um sicherzustellen, dass das Programm beendet. Diese Codezeile ist optional.*/ ``` + Viel Spass mit diesem einfachen Rechner! (Oder dieser Programmiersprache, um exakt zu sein.) Das ganze Programm wurde in GNU bc geschrieben. Um es auszuführen, benutze ```bc learnbc.bc```. diff --git a/de-de/c++-de.html.markdown b/de-de/c++-de.html.markdown index cca54c30..6224d179 100644 --- a/de-de/c++-de.html.markdown +++ b/de-de/c++-de.html.markdown @@ -1148,9 +1148,8 @@ compl 4 // Führt bitweises nicht aus. 4 bitor 3 // Führt bitweises oder aus. 4 bitand 3 // Führt bitweises und aus. 4 xor 3 // Führt bitweises xor aus. - - ``` + Weiterführende Literatur: * Aktuelle Sprachen-Referenz [CPP Reference](http://cppreference.com/w/cpp). diff --git a/de-de/c-de.html.markdown b/de-de/c-de.html.markdown index 3a726b83..3eb1e4e6 100644 --- a/de-de/c-de.html.markdown +++ b/de-de/c-de.html.markdown @@ -844,6 +844,7 @@ Node create_linked_list(int *value, int length); #endif /* Ende der Präprozessordirektive */ ``` + ## Weiterführende Literatur Das Beste wird es sein, wenn man sich ein Exemplar des Buches diff --git a/de-de/crystal-de.html.markdown b/de-de/crystal-de.html.markdown index 535267ee..2c1dda72 100644 --- a/de-de/crystal-de.html.markdown +++ b/de-de/crystal-de.html.markdown @@ -10,7 +10,6 @@ lang: de-de --- ```crystal - # Das ist ein Kommentar # Alles ist ein Objekt diff --git a/de-de/css-de.html.markdown b/de-de/css-de.html.markdown index da706e91..02c7559f 100644 --- a/de-de/css-de.html.markdown +++ b/de-de/css-de.html.markdown @@ -144,7 +144,6 @@ selector { font-family: "Courier New", Trebuchet, Arial; /* wird die erste Schriftart nicht gefunden, wird die zweite benutzt, usw. */ } - ``` ## Benutzung @@ -164,7 +163,6 @@ empfohlen ist --> <!-- Oder direkt auf einem Element (sollte aber vermieden werden) --> <div style='property:value;'> </div> - ``` ## Spezifität @@ -190,7 +188,6 @@ p {} /*E*/ p { property: wert !important; } - ``` und das folgende Markup: diff --git a/de-de/d-de.html.markdown b/de-de/d-de.html.markdown index 28ecc7ae..a4c8c372 100644 --- a/de-de/d-de.html.markdown +++ b/de-de/d-de.html.markdown @@ -128,7 +128,6 @@ class Matrix(uint m, uint n, T = int) { } auto mat = new Matrix!(3, 3); // Standardmäßig ist T vom Typ Integer - ``` Wo wir schon bei Klassen sind - Wie wäre es mit Properties! Eine Property @@ -248,5 +247,4 @@ void main() { ref = sqrt(i + 1.0); } } - ``` diff --git a/de-de/edn-de.html.markdown b/de-de/edn-de.html.markdown index 2434d1bd..2d194f3b 100644 --- a/de-de/edn-de.html.markdown +++ b/de-de/edn-de.html.markdown @@ -102,7 +102,6 @@ false (edn/read-string {:readers {'MyYelpClone/MenuItem map->menu-item}} "#MyYelpClone/MenuItem {:name \"eggs-benedict\" :rating 10}") ; -> #user.MenuItem{:name "eggs-benedict", :rating 10} - ``` # Referenzen diff --git a/de-de/elixir-de.html.markdown b/de-de/elixir-de.html.markdown index 4acb8e23..a91288c9 100644 --- a/de-de/elixir-de.html.markdown +++ b/de-de/elixir-de.html.markdown @@ -13,7 +13,6 @@ kompatibel mit Erlang, verfügt aber über eine freundlichere Syntax und bringt viele Features mit. ```ruby - # Einzeilige Kommentare werden mit der Raute gesetzt. # Es gibt keine mehrzeiligen Kommentare; @@ -412,7 +411,6 @@ pid <- {:circle, 2} # Die Shell selbst ist ein Prozess und mit dem Schlüsselwort 'self' kann man # die aktuelle pid herausfinden. self() #=> #PID<0.27.0> - ``` ## Referenzen und weitere Lektüre diff --git a/de-de/hack-de.html.markdown b/de-de/hack-de.html.markdown index 42428130..6e9b9da3 100644 --- a/de-de/hack-de.html.markdown +++ b/de-de/hack-de.html.markdown @@ -305,7 +305,6 @@ class Samuel $cat = new Samuel(); $cat instanceof KittenInterface === true; // True - ``` ## Weitere Informationen diff --git a/de-de/haml-de.html.markdown b/de-de/haml-de.html.markdown index 7272b365..9757ec2f 100644 --- a/de-de/haml-de.html.markdown +++ b/de-de/haml-de.html.markdown @@ -147,7 +147,6 @@ $ haml input_file.haml output_file.html :javascript console.log('Dies ist ein <script>'); - ``` ## Weitere Resourcen diff --git a/de-de/haskell-de.html.markdown b/de-de/haskell-de.html.markdown index 5d17ccc7..a154c829 100644 --- a/de-de/haskell-de.html.markdown +++ b/de-de/haskell-de.html.markdown @@ -419,7 +419,6 @@ foo :: Integer What is your name? Friend! Hello, Friend! - ``` Es gibt noch viel mehr in Haskell, wie zum Beispiel Typklassen und Monaden. diff --git a/de-de/html-de.html.markdown b/de-de/html-de.html.markdown index 8b5597e7..79bdbb8e 100644 --- a/de-de/html-de.html.markdown +++ b/de-de/html-de.html.markdown @@ -106,7 +106,6 @@ Dieser Artikel ist bedacht darauf, nur HTML Syntax und nützliche Tipps zu geben <td>Zweite Zeile, zweite Spalte</td> </tr> </table> - ``` ## Verwendung diff --git a/de-de/latex-de.html.markdown b/de-de/latex-de.html.markdown index 8a952b15..6286c2a0 100644 --- a/de-de/latex-de.html.markdown +++ b/de-de/latex-de.html.markdown @@ -240,6 +240,7 @@ Das war's erst mal! % Dokument beenden \end{document} ``` + ## Mehr Informationen über LateX * Das tolle LaTeX wikibook: [https://de.wikibooks.org/wiki/LaTeX-Kompendium](https://de.wikibooks.org/wiki/LaTeX-Kompendium) diff --git a/de-de/lua-de.html.markdown b/de-de/lua-de.html.markdown index 83f8506c..df3df371 100644 --- a/de-de/lua-de.html.markdown +++ b/de-de/lua-de.html.markdown @@ -400,8 +400,8 @@ g = loadstring('print(343)') -- Gibt eine Funktion zurück.. g() -- Ausgabe 343; Vorher kam keine Ausgabe. --]] - ``` + ## Referenzen Ich war so begeistert Lua zu lernen, damit ich Spiele mit <a href="http://love2d.org/">Love 2D game engine</a> programmieren konnte. diff --git a/de-de/make-de.html.markdown b/de-de/make-de.html.markdown index 3674f2f5..66be5164 100644 --- a/de-de/make-de.html.markdown +++ b/de-de/make-de.html.markdown @@ -21,7 +21,6 @@ Es gibt eine Vielzahl an Varianten von Make, dieser Artikel beschäftigt sich mit der Version GNU Make. Diese Version ist Standard auf Linux. ```make - # Kommentare können so geschrieben werden. # Dateien sollten Makefile heißen, denn dann können sie als `make <ziel>` diff --git a/de-de/processing-de.html.markdown b/de-de/processing-de.html.markdown index 42ae2233..707940db 100644 --- a/de-de/processing-de.html.markdown +++ b/de-de/processing-de.html.markdown @@ -255,7 +255,6 @@ Da du nun die Grundsätze der Programmiersprache verstanden hast, schauen wir uns nun das Beste an Processing an - Das Zeichnen! ``` - /* ------------------------------------------------- Figuren ------------------------------------------------- diff --git a/de-de/pug-de.html.markdown b/de-de/pug-de.html.markdown index ce31c648..cff70660 100644 --- a/de-de/pug-de.html.markdown +++ b/de-de/pug-de.html.markdown @@ -16,8 +16,8 @@ Sie kann auch als serverseitige Templatingsprache für Serversprachen wie NodeJS verwendet werden. ### Die Sprache -```pug +```pug //- Einzeilenkommentar //- Mehrzeiliger @@ -198,7 +198,6 @@ mixin comment(name, kommentar) div.comment-text= kommentar +comment("Bob", "Das ist super") //- <div>Hallo</div> - ``` diff --git a/de-de/pyqt-de.html.markdown b/de-de/pyqt-de.html.markdown index 3b9b6ebb..ea6f133a 100644 --- a/de-de/pyqt-de.html.markdown +++ b/de-de/pyqt-de.html.markdown @@ -43,7 +43,6 @@ def window(): if __name__ == '__main__': window() - ``` Damit wir weitere fortgeschrittene Funktionen in **pyqt** verwenden können, diff --git a/de-de/python-de.html.markdown b/de-de/python-de.html.markdown index 337f1224..f42e5a0f 100644 --- a/de-de/python-de.html.markdown +++ b/de-de/python-de.html.markdown @@ -18,7 +18,6 @@ Hinweis: Dieser Beitrag bezieht sich implizit auf Python 3. Falls du lieber Pyth dass Python 2 als veraltet gilt und für neue Projekte nicht mehr verwendet werden sollte. ```python - # Einzeilige Kommentare beginnen mit einer Raute (Doppelkreuz) """ Mehrzeilige Strings werden mit @@ -623,7 +622,6 @@ def say(say_please=False): print(say()) # Can you buy me a beer? print(say(say_please=True)) # Can you buy me a beer? Please! I am poor :( - ``` ## Lust auf mehr? diff --git a/de-de/pythonlegacy-de.html.markdown b/de-de/pythonlegacy-de.html.markdown index d66a8551..c409a59a 100644 --- a/de-de/pythonlegacy-de.html.markdown +++ b/de-de/pythonlegacy-de.html.markdown @@ -745,7 +745,6 @@ def say(say_please=False): print(say()) # Can you buy me a beer? print(say(say_please=True)) # Can you buy me a beer? Please! I am poor :( - ``` ## Lust auf mehr? diff --git a/de-de/rst-de.html.markdown b/de-de/rst-de.html.markdown index 0eb2b6bf..da5b5f3f 100644 --- a/de-de/rst-de.html.markdown +++ b/de-de/rst-de.html.markdown @@ -94,7 +94,6 @@ muss man die Zielurl nach dem Text hinzufügen. - Wenn man es mehr Markdown ähnlich eingibt: `GitHub <https://github.com/>`_ . .. _GitHub https://github.com/ - ``` diff --git a/de-de/sass-de.html.markdown b/de-de/sass-de.html.markdown index 0c14e249..7ae200c9 100644 --- a/de-de/sass-de.html.markdown +++ b/de-de/sass-de.html.markdown @@ -19,8 +19,6 @@ Wenn du bereits mit CSS3 vertraut bist, wirst du dir Sass relativ schnell aneign ```scss - - //Einzeilige Kommentare werden entfernt, wenn Sass zu CSS kompiliert wird. /* Mehrzeilige Kommentare bleiben bestehen. */ @@ -427,7 +425,6 @@ body { .gutter { width: 6.25%; } - ``` ## SASS oder Sass? diff --git a/de-de/scala-de.html.markdown b/de-de/scala-de.html.markdown index a8344e6a..3f4ea367 100644 --- a/de-de/scala-de.html.markdown +++ b/de-de/scala-de.html.markdown @@ -824,7 +824,6 @@ val writer = new PrintWriter("myfile.txt") writer.write("Schreibe Zeile" + util.Properties.lineSeparator) writer.write("Und noch eine Zeile" + util.Properties.lineSeparator) writer.close() - ``` ## Weiterführende Hinweise diff --git a/de-de/shutit-de.html.markdown b/de-de/shutit-de.html.markdown index 29ed639e..e3ca9349 100644 --- a/de-de/shutit-de.html.markdown +++ b/de-de/shutit-de.html.markdown @@ -25,7 +25,6 @@ Es ist verfügbar als pip install. Starten wir mit dem einfachsten Beispiel. Erstelle eine Datei names example.py ```python - import shutit session = shutit.create_session('bash') session.send('echo Hello World', echo=True) diff --git a/de-de/tcl-de.html.markdown b/de-de/tcl-de.html.markdown index 4f3b8820..1c91e57d 100644 --- a/de-de/tcl-de.html.markdown +++ b/de-de/tcl-de.html.markdown @@ -462,8 +462,6 @@ puts [countdown 1] ;# -> 1 puts [countdown 1] ;# -> 0 puts [coundown 1] ;# -> invalid command name "countdown1" puts [countdown 2] ;# -> 1 - - ``` ## Referenzen |