[skip ci] Added url
, original_url
and archive_date
to the cite_book
shortcode
This commit is contained in:
parent
7076d2fd83
commit
c1767791da
@ -9,11 +9,10 @@
|
|||||||
{{ with .date }}({{ . }}).{{ end }}
|
{{ with .date }}({{ . }}).{{ end }}
|
||||||
|
|
||||||
{{/* Chapter */}}
|
{{/* Chapter */}}
|
||||||
{{ with .chapter }}"{{ . }}"{{ end }}
|
{{ with .chapter }}"{{ . }}" in{{ end }}
|
||||||
|
|
||||||
{{/* Title and edition */}}
|
{{/* Title, edition and URL */}}
|
||||||
{{ with .title }}in <i>{{ . }}</i>{{ end }}
|
{{ with .url }}<a href="{{ . }}">{{ end }}{{ with .title }}<i>{{ . }}</i>{{ end }}{{ with .edition }}({{ . }} ed.){{ end }}{{ if .url }}</a>{{ end }}.
|
||||||
{{ with .edition }}({{ . }} ed.){{ end }}.
|
|
||||||
|
|
||||||
{{/* Publisher */}}
|
{{/* Publisher */}}
|
||||||
{{ with .publisher }}{{ . }}.{{ end }}
|
{{ with .publisher }}{{ . }}.{{ end }}
|
||||||
@ -25,4 +24,7 @@
|
|||||||
{{/* ISBN */}}
|
{{/* ISBN */}}
|
||||||
{{ with .isbn }}ISBN <a target="_blank" href="https://en.wikipedia.org/wiki/Special:BookSources/{{ . }}">{{ . }}</a>.{{ end }}
|
{{ with .isbn }}ISBN <a target="_blank" href="https://en.wikipedia.org/wiki/Special:BookSources/{{ . }}">{{ . }}</a>.{{ end }}
|
||||||
|
|
||||||
|
{{/* Archive info */}}
|
||||||
|
{{ with .original_url }}Archived from <a href="{{ . }}">the original</a>{{ end }}{{ with .archive_date }} on {{ . }}{{ end }}.
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -11,6 +11,7 @@ A template for citing books inspired by the "cite book" template of Wikipedia.
|
|||||||
pages = "2-6"
|
pages = "2-6"
|
||||||
|
|
||||||
title = "Introduction to Computing Systems – from Bits & Gates to C & Beyond"
|
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"
|
edition = "1"
|
||||||
date = "2001"
|
date = "2001"
|
||||||
publisher = "McGraw-Hill Higher Education"
|
publisher = "McGraw-Hill Higher Education"
|
||||||
@ -18,6 +19,9 @@ A template for citing books inspired by the "cite book" template of Wikipedia.
|
|||||||
|
|
||||||
author = "Patt, Yale N."
|
author = "Patt, Yale N."
|
||||||
author2 = "Patel, Sanjay J."
|
author2 = "Patel, Sanjay J."
|
||||||
|
|
||||||
|
original_url = "http://www.mhhe.com/patt/"
|
||||||
|
archive_date = "2017-04-21"
|
||||||
>}}
|
>}}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -28,9 +32,12 @@ A template for citing books inspired by the "cite book" template of Wikipedia.
|
|||||||
"pages" (.Get "pages")
|
"pages" (.Get "pages")
|
||||||
"title" (.Get "title")
|
"title" (.Get "title")
|
||||||
"edition" (.Get "edition")
|
"edition" (.Get "edition")
|
||||||
|
"url" (.Get "url")
|
||||||
"date" (.Get "date")
|
"date" (.Get "date")
|
||||||
"publisher" (.Get "publisher")
|
"publisher" (.Get "publisher")
|
||||||
"isbn" (.Get "isbn")
|
"isbn" (.Get "isbn")
|
||||||
"author" (.Get "author")
|
"author" (.Get "author")
|
||||||
"author2" (.Get "author2")
|
"author2" (.Get "author2")
|
||||||
|
"original_url" (.Get "original_url")
|
||||||
|
"archive_date" (.Get "archive_date")
|
||||||
) }}
|
) }}
|
||||||
|
@ -16,8 +16,8 @@ Wikipedia.
|
|||||||
date = "2007-06-09"
|
date = "2007-06-09"
|
||||||
location = "San Diego, CA"
|
location = "San Diego, CA"
|
||||||
|
|
||||||
original-url = "https://www.csc2.ncsu.edu/faculty/efg/wcae/ISCA2007/FinalProgram.html"
|
original_url = "https://www.csc2.ncsu.edu/faculty/efg/wcae/ISCA2007/FinalProgram.html"
|
||||||
archive-date = "2025-01-29"
|
archive_date = "2025-01-29"
|
||||||
>}}
|
>}}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -41,6 +41,6 @@ Wikipedia.
|
|||||||
{{ with .Get "location" }}{{ . }}.{{ end }}
|
{{ with .Get "location" }}{{ . }}.{{ end }}
|
||||||
|
|
||||||
{{/* Archive info */}}
|
{{/* Archive info */}}
|
||||||
{{ with .Get "original-url" }}Archived from <a href="{{ . }}">the original</a>{{ end }}{{ with .Get "archive-date" }} on {{ . }}{{ end }}.
|
{{ with .Get "original_url" }}Archived from <a href="{{ . }}">the original</a>{{ end }}{{ with .Get "archive_date" }} on {{ . }}{{ end }}.
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -50,4 +50,8 @@ specifically
|
|||||||
"publisher" "McGraw-Hill Higher Education"
|
"publisher" "McGraw-Hill Higher Education"
|
||||||
"author" "Patt, Yale N."
|
"author" "Patt, Yale N."
|
||||||
"author2" "Patel, Sanjay J."
|
"author2" "Patel, Sanjay J."
|
||||||
|
|
||||||
|
"url" ""
|
||||||
|
"original_url" ""
|
||||||
|
"archive_date" ""
|
||||||
) }}
|
) }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user