From b86b53a37509af9dacee84e4d4f8365ca56008f0 Mon Sep 17 00:00:00 2001 From: Editor Lionbridge Date: Fri, 28 Apr 2017 11:21:48 +0300 Subject: [PATCH] Update tagging instructions - Tagging example for creating a topic without a TOC box is added - tag use in notes has been clarified - Special characters ", ' and   have been removed - Various special characters related to mathematical symbols currently in use in the guides have been added PS2: Added micro sign Change-Id: Idfd6d3bffe2efa4f8977bc136f3ddeedf44fd8db --- template/tagging_example.htm | 42 +++++++++++++++++++++++++++++++++++------- 1 file changed, 35 insertions(+), 7 deletions(-) diff --git a/template/tagging_example.htm b/template/tagging_example.htm index 3f5bace..b7f5808 100644 --- a/template/tagging_example.htm +++ b/template/tagging_example.htm @@ -14,6 +14,22 @@ TITLE + +
@@ -78,26 +94,37 @@

Bold text, used mainly for UI elements, such as button names

The following special characters must be used:

-

quotes are written as "

-

single quote (apostrophe) is written as '

greater than character is written as >

less than character is written as <

ampersand character is written as &

registered trademark is written as ®

trademark is written as ™

+

degrees sign is written as °

+

plus-minus sign is written as ±

+

caret (exponent) sign is written as ^

+

lamdba sign is written as λ

+

left and right ceiling is written as ⌈ and ⌉

+

left and right floor is written as ⌊ and ⌋

+

tensor product sign is written as ⊗

+

dot operator sign is written as ⋅

+

approximation symbol is written as ≈

+

mu (micro) sign is written as µ

+ + -

The following is a code snippet. The indentations at the beginning of each line are created with special space characters ( ):

+

The following is a code snippet example:

-void message_port_cb(int local_port_id, const char *remote_app_id, bundle *message)
+void
+message_port_cb(int local_port_id, const char *remote_app_id, bundle *message)
 {
     char *command = NULL;
     To highlight a specific part of the code
-    bundle_get_str(message, "command", &command);
-    bundle_get_str(message, "data", &data);
+    bundle_get_str(message, "command", &command);
+    bundle_get_str(message, "data", &data);
 
     dlog_print(DLOG_INFO, LOG_TAG,
-               "Message from %s, command: %s data: %s",
+               "Message from %s, command: %s data: %s",
                remote_app_id, command, data);
 }
 
@@ -128,6 +155,7 @@ void message_port_cb(int local_port_id, const char *remote_app_id, bundle *messa
Note NOTE CONTENT +

You cannot use the <strong> element in the note inside another element, because it creates an extra line break. It is OK to use it directly within the <div> element. If emphasis is absolutely needed inside other elements, use the <code> element instead.

-- 2.7.4