Skip to content

Commit 8a3b95f

Browse files
authored
Merge pull request #867 from ebouchut/fix/remove_links_from_mermaid_diagram
✏️ Remove links from Flowchart diagram and fix some node text
2 parents fbb0250 + 7603cd5 commit 8a3b95f

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -250,19 +250,12 @@ title: How to prevent Google Translate from automatically translating a text?
250250
---
251251
flowchart TD
252252
A[Start] --> B{Is Text a Key, Identifier,<br/> Variable, Filename, Folder, <br/>Error Message,<br/> or UI Label?}
253-
click A "#entity"
254253
B --> |Yes| C{is Text <br/>a Glossary Item?}
255-
click C "#entity"
256254
C --> |Yes| D["&lt;code&gt;text&lt;/code&gt;"]
257-
click D "#entity"
258-
C --> |No| E[`text`]
259-
click E "#entity"
255+
C --> |No| E["&grave;text&grave;"]
260256
B --> |No| F{Is Text <br/>a Product Name,<br/>a Project Name,<br/>or a Brand Name?}
261-
click F "#name"
262-
F --> |Yes| G[*text*]
263-
click G "#name"
257+
F --> |Yes| G["&ast;text&ast;"]
264258
F --> |No| H["&lt;span translate=&quot;no&quot;&gt;text&lt;span&gt;"]
265-
click H "#generic"
266259
```
267260

268261
If the automatic translation is still incorrect after applying these rules, [read this](#when-rules-fail).

0 commit comments

Comments
 (0)