Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ICodeContent.cs
2
4{
8 public interface ICodeContent
9 {
15 Grade Supports(string Language);
16
20 bool EvaluatesScript { get; }
21
26 void Register(MarkdownDocument Document);
27 }
28}
Contains a markdown document. This markdown document class supports original markdown,...
Interface for all markdown handlers of code content.
Definition: ICodeContent.cs:9
bool EvaluatesScript
If script is evaluated for this type of code block.
Definition: ICodeContent.cs:20
void Register(MarkdownDocument Document)
Is called on the object when an instance of the element has been created in a document.
Grade Supports(string Language)
Checks how well the handler supports code content of a given type.
Grade
Grade enumeration
Definition: Grade.cs:7