OfficeIMO

API Reference

Enum

CssDelivery

Namespace OfficeIMO.Markdown
Assembly OfficeIMO.Markdown
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

How CSS is provided to the rendered HTML.

Inheritance

  • Enum
  • CssDelivery

Values

public const CssDelivery Inline #

Inline a <style> tag with CSS content.

Value: 0
public const CssDelivery ExternalFile #

Write CSS to a sidecar file and link it from HTML.

Value: 1
public const CssDelivery LinkHref #

Use a <link rel="stylesheet" href="..."> tag to a provided URL.

Value: 2
public const CssDelivery None #

Do not include any CSS.

Value: 3