view tests/test_titlepage.yaml @ 29:f5f29660fa6a

html: Add global method to get the CSS code.
author Ludovic Chabant <ludovic@chabant.com>
date Thu, 12 Jan 2017 09:18:20 -0800
parents 59fe8cb6190d
children
line wrap: on
line source

---
in: ""
title: {}
out: []
---
in: "\n"
title: {}
out:
    - "!"
---
in: "\n\n"
title: {}
out:
    - "!\n"
---
in: "\n\n\n"
title: {}
out:
    - "!\n\n"
---
in: |
    Title: This simple test
    Author: Ludovic
title:
    title: "This simple test"
    author: "Ludovic"
out: []
---
in: |
    Title: This simple test

    It doesn't have much.
title:
    title: "This simple test"
out:
    - "!\nIt doesn't have much."
---
in: |
    Title:
        _**BRICK & STEEL**_
        _**FULL RETIRED**_
    Credit: Written by
    Authors: Stu Maschwitz
title:
    title: "_**BRICK & STEEL**_\n_**FULL RETIRED**_"
    credit: Written by
    authors: Stu Maschwitz
out: []