Skip to content

Commit 45c7025

Browse files
committed
EN, CZ : texts : print extracted as a separate section, link added
1 parent caf2f74 commit 45c7025

File tree

6 files changed

+92
-74
lines changed

6 files changed

+92
-74
lines changed

cs/print.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# 🖨️ Tisk
2+
3+
## 🖼️ Ikonky
4+
5+
Před přípravou tisku jsou ikonky automaticky odebírány z textu. Pokud Vám toto chování nevyhovuje, můžete jej upravit buď na úrovni konfigurace celé nápovědy, nebo pomocí direktivy v konkrétním tématu.
6+
7+
Chcete-li ikonky zachovat v konkrétním tématu, vložte tuto direktivu po prvním nadpisu kapitoly (nesmí být před nadpisem) nebo později v textu tématu:
8+
9+
```markdown
10+
# 📖Help Viewer přehled
11+
12+
<!-- @print-keep-icons -->
13+
Aplikace je rozdělena na dvě hlavní oblasti:
14+
```
15+
16+
⚠️ Upozornění: Direktivu napište s přesnou mezerou, jak je ukázáno, a nekombinujte ji s jinými komentáři nebo bloky. Díky tomu bude zpracování správné a bez problémů.
17+
18+
Chcete-li ikonky zachovat ve všech tématech, nastavte konfigurační volbu nápovědy **OverridePrintKeepIcons** na 1.
19+
20+
Podrobnější popis chování:
21+
22+
| OverridePrintKeepIcons | print-keep-icons | Výsledek |
23+
|---|---|---|
24+
| 0 / není | není | ikonky odebrány |
25+
| 1 | není | ikonky zachovány |
26+
| 0 | je | ikonky zachovány |
27+
| 1 | je | ikonky odebrány |
28+
29+
## Uzavíratelná sekce
30+
31+
Uzavíratelné sekce jsou před tiskem automaticky rozbaleny, aby se zajistil tisk veškerého textu.
32+
33+
## 📄 Zalomení stránky při tisku
34+
35+
V místě, kde potřebujete ručně zalomit stránku, vložte následující text do svého .md nebo .html souboru:
36+
37+
```markdown
38+
<!-- @print-break -->
39+
```
40+
41+
⚠️ Upozornění: Text napište s přesnou mezerou, jak je zde ukázáno.
42+
43+
Při přípravě tiskové verze bude dokument na tomto místě automaticky rozdělen a následující obsah se vytiskne na nové stránce.

cs/texts.md

Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -21,43 +21,7 @@ Vložení do textu kapitoly provedete buďto přímou kopií znaku, nebo vložen
2121

2222
Pro konkrétní kódy a situace doporučuji použití Copilot/ChatGPT, které Vám pomohou rychle najít vhodné příklady.
2323

24-
### Ikonky a tisk
25-
26-
Před přípravou tisku jsou ikonky automaticky odebírány z textu. Pokud Vám toto chování nevyhovuje, můžete jej upravit buď na úrovni konfigurace celé nápovědy, nebo pomocí direktivy v konkrétním tématu.
27-
28-
Chcete-li ikonky zachovat v konkrétním tématu, vložte tuto direktivu po prvním nadpisu kapitoly (nesmí být před nadpisem) nebo později v textu tématu:
29-
30-
```markdown
31-
# &#128214;Help Viewer přehled
32-
33-
<!-- @print-keep-icons -->
34-
Aplikace je rozdělena na dvě hlavní oblasti:
35-
```
36-
37-
⚠️ Upozornění: Direktivu napište s přesnou mezerou, jak je ukázáno, a nekombinujte ji s jinými komentáři nebo bloky. Díky tomu bude zpracování správné a bez problémů.
38-
39-
Chcete-li ikonky zachovat ve všech tématech, nastavte konfigurační volbu nápovědy **OverridePrintKeepIcons** na 1.
40-
41-
Podrobnější popis chování:
42-
43-
| OverridePrintKeepIcons | print-keep-icons | Výsledek |
44-
|---|---|---|
45-
| 0 / není | není | ikonky odebrány |
46-
| 1 | není | ikonky zachovány |
47-
| 0 | je | ikonky zachovány |
48-
| 1 | je | ikonky odebrány |
49-
50-
## 📄 Zalomení stránky při tisku
51-
52-
V místě, kde potřebujete ručně zalomit stránku, vložte následující text do svého .md nebo .html souboru:
53-
54-
```markdown
55-
<!-- @print-break -->
56-
```
57-
58-
⚠️ Upozornění: Text napište s přesnou mezerou, jak je zde ukázáno.
59-
60-
Při přípravě tiskové verze bude dokument na tomto místě automaticky rozdělen a následující obsah se vytiskne na nové stránce.
24+
💡 Tisk ikon je ve výchozím stavu vypnutý. Více v [tisk ikonek][IconPrint].
6125

6226
## Seznamy
6327

@@ -129,3 +93,4 @@ Zde je zobrazen další popis dané problematiky.
12993

13094
[MDSyntax]: https://www.markdownguide.org/basic-syntax/ "MD syntaxe"
13195
[SecList]: sectionList.md "Seznam částí"
96+
[IconPrint]: print.md#h-2-0 "Tisk ikonek"

cs/tree.lst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Nová kapitola|Nová kapitola||newTopic.md
1717
🧾 Kódový výpis|Kódový výpis v textech||code.md
1818
📊 Diagram|Diagram||diagram.md
1919
🧩 JavaScript|Vložený JavaScript blok||innerJS.md
20+
🖨️ Tisk|Tisk||print.md
2021
Indexace|Indexace kapitoly a popis metadat||indexing.md
2122
📖 Strom témat|Strom témat (tree.lst)||mdata/tree.lst.md
2223
📑 Seznam souborů|Seznam souborů (files.lst)||mdata/files.lst.md

en/print.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# 🖨️ Print
2+
3+
## 🖼️ Icons
4+
5+
Icons are automatically removed from the text before printing. If you are not comfortable with this behavior, you can modify it either at the configuration level of the entire help or by using a directive in a specific topic.
6+
7+
If you want to keep the icons in a specific topic, insert this directive after the first chapter heading (it must not be before the heading) or later in the topic text:
8+
9+
```markdown
10+
# &#128214;Help Viewer overview
11+
12+
<!-- @print-keep-icons -->
13+
The application is divided into two main areas:
14+
```
15+
16+
⚠️ Note: Type the directive with the exact spacing as shown and do not combine it with other comments or blocks. This will ensure correct processing and no problems.
17+
18+
To keep the icons in all topics, set the help configuration option **OverridePrintKeepIcons** to 1.
19+
20+
For a more detailed description of the behavior:
21+
22+
| OverridePrintKeepIcons | print-keep-icons | Result |
23+
|---|---|---|
24+
| 0 / not | not | icons removed |
25+
| 1 | not | icons retained |
26+
| 0 | present | icons retained |
27+
| 1 | present | icons removed |
28+
29+
## Collapsible section
30+
31+
All collapsible sections are automatically opened before printing to ensure that all text is printed.
32+
33+
## 📄 Page break for printing
34+
35+
To manually insert a page break, add the following line to your .md or .html file:
36+
37+
```markdown
38+
<!-- @print-break -->
39+
```
40+
41+
⚠️ Note: Make sure to type the text exactly as shown, including spaces.
42+
43+
When generating the print version, the document will automatically break at this point, and the following content will start on a new page.

en/texts.md

Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -21,43 +21,7 @@ The insertion into the chapter text is done either by direct copy of the charact
2121

2222
For exact codes and situations I advice to use Copilot/ChatGPT, which will help you find suitable icons quickly.
2323

24-
### Icons and printing
25-
26-
Icons are automatically removed from the text before printing. If you are not comfortable with this behavior, you can modify it either at the configuration level of the entire help or by using a directive in a specific topic.
27-
28-
If you want to keep the icons in a specific topic, insert this directive after the first chapter heading (it must not be before the heading) or later in the topic text:
29-
30-
```markdown
31-
# &#128214;Help Viewer overview
32-
33-
<!-- @print-keep-icons -->
34-
The application is divided into two main areas:
35-
```
36-
37-
⚠️ Note: Type the directive with the exact spacing as shown and do not combine it with other comments or blocks. This will ensure correct processing and no problems.
38-
39-
To keep the icons in all topics, set the help configuration option **OverridePrintKeepIcons** to 1.
40-
41-
For a more detailed description of the behavior:
42-
43-
| OverridePrintKeepIcons | print-keep-icons | Result |
44-
|---|---|---|
45-
| 0 / not | not | icons removed |
46-
| 1 | not | icons retained |
47-
| 0 | present | icons retained |
48-
| 1 | present | icons removed |
49-
50-
## 📄 Page break for printing
51-
52-
To manually insert a page break, add the following line to your .md or .html file:
53-
54-
```markdown
55-
<!-- @print-break -->
56-
```
57-
58-
⚠️ Note: Make sure to type the text exactly as shown, including spaces.
59-
60-
When generating the print version, the document will automatically break at this point, and the following content will start on a new page.
24+
💡 Icon printing is disabled by default. See [icons print][IconPrint] for more information.
6125

6226
## Lists
6327

@@ -129,3 +93,4 @@ There is extended description of given point.
12993

13094
[MDSyntax]: https://www.markdownguide.org/basic-syntax/ "MD syntax"
13195
[SecList]: sectionList.md "Sections List"
96+
[IconPrint]: print.md#h-2-0 "Icons print"

en/tree.lst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ New chapter|New chapter||newTopic.md
1717
🧾 Code listing|Code listing in texts||code.md
1818
📊 Diagram|Diagram||diagram.md
1919
🧩 JavaScript|JavaScript embedded block||innerJS.md
20+
🖨️ Print|Print||print.md
2021
Indexation|Chapter indexation and metadata description||indexing.md
2122
📖 TOC|TOC (tree.lst)||mdata/tree.lst.md
2223
📑 File list|File list (files.lst)||mdata/files.lst.md

0 commit comments

Comments
 (0)