Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
HtmlSettings.cs
2{
6 public class HtmlSettings
7 {
8 private string hashtagClass = string.Empty;
9 private string hashtagClickScript = string.Empty;
10 private bool xmlEntitiesOnly = false;
11
15 public HtmlSettings()
16 {
17 }
18
22 public string HashtagClass
23 {
24 get => this.hashtagClass;
25 set => this.hashtagClass = value;
26 }
27
31 public string HashtagClickScript
32 {
33 get => this.hashtagClickScript;
34 set => this.hashtagClickScript = value;
35 }
36
40 public bool XmlEntitiesOnly
41 {
42 get => this.xmlEntitiesOnly;
43 set => this.xmlEntitiesOnly = value;
44 }
45 }
46}
Contains settings that the HTML export uses to customize HTML output.
Definition: HtmlSettings.cs:7
bool XmlEntitiesOnly
If typographical extensions should conform to XML entities (true), or if HTML entities can be used as...
Definition: HtmlSettings.cs:41
string HashtagClickScript
JavaScript to execute when hashtag mark element is clicked.
Definition: HtmlSettings.cs:32
string HashtagClass
Class name used on hashtag mark elements.
Definition: HtmlSettings.cs:23
HtmlSettings()
Contains settings that the HTML export uses to customize HTML output.
Definition: HtmlSettings.cs:15