How To: Work with Right-to-Left Languages
Format templates for right-to-left languages like Hebrew and Arabic.
Last updated
Was this helpful?
Was this helpful?
<rtl>reverse</rtl>
<p>First line of text with {{!Field1}}</p>
<rtl>reverse</rtl>
<p>Second line of text with {{!Field2}}</p><html dir="rtl">
<head>
<style>
body {
direction: rtl;
text-align: right;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<rtl>reverse</rtl>
<h1>{{!Account.Name}}</h1>
<rtl>reverse</rtl>
<p>Account ID: {{!Account.AccountNumber}}</p>
<rtl>reverse</rtl>
<p>{{!Account.Description__c}}</p>
</body>
</html>