Skip to content

Commit

Permalink
Merge pull request #867 from ebouchut/fix/remove_links_from_mermaid_d…
Browse files Browse the repository at this point in the history
…iagram

✏️ Remove links from Flowchart diagram and fix some node text
  • Loading branch information
ebouchut authored Oct 5, 2024
2 parents fbb0250 + 7603cd5 commit 8a3b95f
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,19 +250,12 @@ title: How to prevent Google Translate from automatically translating a text?
---
flowchart TD
A[Start] --> B{Is Text a Key, Identifier,<br/> Variable, Filename, Folder, <br/>Error Message,<br/> or UI Label?}
click A "#entity"
B --> |Yes| C{is Text <br/>a Glossary Item?}
click C "#entity"
C --> |Yes| D["&lt;code&gt;text&lt;/code&gt;"]
click D "#entity"
C --> |No| E[`text`]
click E "#entity"
C --> |No| E["&grave;text&grave;"]
B --> |No| F{Is Text <br/>a Product Name,<br/>a Project Name,<br/>or a Brand Name?}
click F "#name"
F --> |Yes| G[*text*]
click G "#name"
F --> |Yes| G["&ast;text&ast;"]
F --> |No| H["&lt;span translate=&quot;no&quot;&gt;text&lt;span&gt;"]
click H "#generic"
```

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

0 comments on commit 8a3b95f

Please sign in to comment.