asciidoctor-bibliography 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/asciidoctor-bibliography.gemspec +13 -6
- data/lib/asciidoctor-bibliography/version.rb +1 -1
- data/samples/standard/sample-default.adoc +1 -1
- data/samples/standard/sample-din.adoc +1 -1
- data/samples/standard/sample-ieee.adoc +1 -1
- data/samples/tex/sample-authoryear.adoc +1 -1
- data/samples/tex/sample-din.adoc +1 -1
- data/samples/tex/sample-numbers.adoc +1 -1
- data/samples/tex/sample-ordering.adoc +1 -1
- metadata +15 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b1bc6bebd53e74968fa7066d8a71afb0a5f6cda
|
4
|
+
data.tar.gz: f8e718254aa7db4d6344a610b0fb85240ce3edc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 421467c7c532b3f912c7080dfb0c9c2ecdc8bb780bce1cc51fb99902877ea25e2f4a94ae766cb5cd474cf17778875640570f066e37a65d2682148346dfc83807
|
7
|
+
data.tar.gz: e631cd87f95c990671f81bb9cedeb9d7a74babe832776bea787540d0ac3950fbbf65932ed7b68aa6105be52079f0c74d13d55795cc92472efcd03ed04d1e5124
|
@@ -10,13 +10,20 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ['Ribose Inc.']
|
11
11
|
spec.email = ['open.source@ribose.com']
|
12
12
|
|
13
|
-
spec.summary = '
|
13
|
+
spec.summary = 'Citations and bibliography the "asciidoctor-way"'
|
14
14
|
spec.description = <<~END
|
15
|
-
asciidoctor-bibliography
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
15
|
+
asciidoctor-bibliography lets you handle citations and bibliography the "asciidoctor-way"!
|
16
|
+
|
17
|
+
Its syntax is designed to be native-asciidoctor:
|
18
|
+
* single cite `cite:[key]`;
|
19
|
+
* contextual cite `cite[key, page=3]`;
|
20
|
+
* multiple cites `cite:[key1]+[key2]`;
|
21
|
+
* full cite `fullcite:[key]`; and
|
22
|
+
* TeX-compatible macros including `citep:[key]`, `citet:[]key` and friends.
|
23
|
+
|
24
|
+
Citation output styles are fully bridged to the CSL library, supporting formats such as IEEE, APA, Chicago, DIN and ISO 690.
|
25
|
+
|
26
|
+
The `bibliography:[]` command generates a full reference list that adheres to your configured citation style.
|
20
27
|
END
|
21
28
|
spec.homepage = 'https://github.com/riboseinc/asciidoctor-bibliography'
|
22
29
|
spec.license = 'MIT'
|
data/samples/tex/sample-din.adoc
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asciidoctor-bibliography
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09-
|
11
|
+
date: 2017-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: asciidoctor
|
@@ -179,11 +179,18 @@ dependencies:
|
|
179
179
|
- !ruby/object:Gem::Version
|
180
180
|
version: '0'
|
181
181
|
description: |
|
182
|
-
asciidoctor-bibliography
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
182
|
+
asciidoctor-bibliography lets you handle citations and bibliography the "asciidoctor-way"!
|
183
|
+
|
184
|
+
Its syntax is designed to be native-asciidoctor:
|
185
|
+
* single cite `cite:[key]`;
|
186
|
+
* contextual cite `cite[key, page=3]`;
|
187
|
+
* multiple cites `cite:[key1]+[key2]`;
|
188
|
+
* full cite `fullcite:[key]`; and
|
189
|
+
* TeX-compatible macros including `citep:[key]`, `citet:[]key` and friends.
|
190
|
+
|
191
|
+
Citation output styles are fully bridged to the CSL library, supporting formats such as IEEE, APA, Chicago, DIN and ISO 690.
|
192
|
+
|
193
|
+
The `bibliography:[]` command generates a full reference list that adheres to your configured citation style.
|
187
194
|
email:
|
188
195
|
- open.source@ribose.com
|
189
196
|
executables: []
|
@@ -264,5 +271,5 @@ rubyforge_project:
|
|
264
271
|
rubygems_version: 2.5.2
|
265
272
|
signing_key:
|
266
273
|
specification_version: 4
|
267
|
-
summary:
|
274
|
+
summary: Citations and bibliography the "asciidoctor-way"
|
268
275
|
test_files: []
|