docs/layouts/shortcodes/cite_book.html

44 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{/*
A template for citing books inspired by the "cite book" template of Wikipedia.
<https://en.wikipedia.org/wiki/Template:Cite_book>
### Example
```md
{{< cite_book
chapter = "1.2 How We Will Get There"
pages = "2-6"
title = "Introduction to Computing Systems from Bits & Gates to C & Beyond"
url = "https://web.archive.org/web/20170421220229/http://www.mhhe.com/engcs/compsci/patt/"
edition = "1"
date = "2001"
publisher = "McGraw-Hill Higher Education"
isbn = "9780072376906"
author = "Patt, Yale N."
author2 = "Patel, Sanjay J."
original_url = "http://www.mhhe.com/patt/"
archive_date = "2017-04-21"
>}}
```
*/}}
{{ partial "cite_book.html" (dict
"chapter" (.Get "chapter")
"pages" (.Get "pages")
"title" (.Get "title")
"edition" (.Get "edition")
"url" (.Get "url")
"date" (.Get "date")
"publisher" (.Get "publisher")
"isbn" (.Get "isbn")
"author" (.Get "author")
"author2" (.Get "author2")
"original_url" (.Get "original_url")
"archive_date" (.Get "archive_date")
) }}