From 7603cd5e263df28ecd6c6828d067ed85aecc6918 Mon Sep 17 00:00:00 2001 From: Eric Bouchut Date: Sat, 28 Sep 2024 16:06:37 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Remove=20links=20from=20Me?= =?UTF-8?q?rmaid=20diagram?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add HTML entities for `*`, backtick to be displayed correctly in node text. Links no longer work. --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e6f55478f49..d946397b624 100644 --- a/README.md +++ b/README.md @@ -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,
Variable, Filename, Folder,
Error Message,
or UI Label?} - click A "#entity" B --> |Yes| C{is Text
a Glossary Item?} - click C "#entity" C --> |Yes| D["<code>text</code>"] - click D "#entity" - C --> |No| E[`text`] - click E "#entity" + C --> |No| E["`text`"] B --> |No| F{Is Text
a Product Name,
a Project Name,
or a Brand Name?} - click F "#name" - F --> |Yes| G[*text*] - click G "#name" + F --> |Yes| G["*text*"] F --> |No| H["<span translate="no">text<span>"] - click H "#generic" ``` If the automatic translation is still incorrect after applying these rules, [read this](#when-rules-fail).