Skip to content

Commit 21ac377

Browse files
author
janschloesser
committed
📝 🎨 Restructure introduction & add right padding to icons
1 parent 4205b0b commit 21ac377

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

docs/content/00_header.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ lang: de
99
fontsize: 13pt
1010
...
1111

12-
# Das Entwurfsmuster: Proxy
12+
# Das Entwurfsmuster: Proxy
13+
Das Proxy-Entwurfsmuster ist ein **[GoF](https://de.wikipedia.org/wiki/Entwurfsmuster_(Buch))-Strukturmuster** und stellt
14+
dir ein Stellvertreter-Objekt oder Platzhalter (_Proxy_) für ein anderes Objekt (_Subjekt_) zur Verfügung.
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
## \faicon{crosshairs} Absicht
2-
Das Proxy-Entwurfsmuster ist ein **[GoF](https://de.wikipedia.org/wiki/Entwurfsmuster_(Buch))-Strukturmuster** und stellt
3-
dir ein Stellvertreter-Objekt oder Platzhalter (_Proxy_) für ein anderes Objekt (_Subjekt_) zur Verfügung.
4-
Es bietet dir dadurch Kontrolle über die Objekterzeugung des Subjekts und dessen Zugriff darauf.
1+
## \faicon{crosshairs} \hspace{.1cm} Absicht
2+
Das Proxy-Muster bietet dir Kontrolle über die Objekterzeugung des Subjekts und dessen Zugriff darauf.

docs/content/02_motivation_proxy-pattern.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## \faicon{thumbs-up} Motivation
1+
## \faicon{thumbs-up} \hspace{.1cm} Motivation
22

33
### Langweilig - die Erste: Sicherer Browser dank Zugriffsproxy
44
Stell dir mal vor, dass du einen sicheren Browser entwickeln möchtest, welcher aus Kostengründen allerdings z.B. bereits
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## \faicon{sitemap} Struktur & Sequenzdiagram
1+
## \faicon{sitemap} \hspace{.1cm} Struktur & Sequenzdiagram
22
![Klassendiagram des Proxy-Musters](../assets/images/proxy_class_diagram.png){ .float-left width=60% }
33
![Sequenzdiagram des Proxy-Musters](../assets/images/proxy_sequence_diagram.png){ width=40% }
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
// replace all markdown fontawesome5 instances with actual icons
2-
$("#main-content").html($("#main-content").html().replace(/\\faicon{(.+)}/g, "<i class='fas fa-$1'></i>"));
2+
$("#main-content").html($("#main-content").html().replace(/\\faicon{(.+?)}/g, "<i class='fas fa-$1'></i>"));
3+
$("#main-content").html($("#main-content").html().replace(/\\hspace{.1cm}/g, ''));

0 commit comments

Comments
 (0)