Overview

Print Article struct to string


Table of contents


Article (interface)

Signature

interface Article {
  /**
   *Description for the article
   */
  description?: string[] | string
  /**
   *Section for the article
   */
  section?: ArticleSection[] | ArticleSection
  /**
   *A article title
   */
  title?: string
}

ArticleSection (interface)

Signature

interface ArticleSection {
  content?: string[] | string
  title?: string
}

printArticle (function)

The print a Article to document app

Added in v0.2.0