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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6260e8b2da719aeb370dfe1946181cab10dadd35
4
- data.tar.gz: f8e5f843bd9348f0333c1257b042578ce2f435b6
3
+ metadata.gz: 0b1bc6bebd53e74968fa7066d8a71afb0a5f6cda
4
+ data.tar.gz: f8e718254aa7db4d6344a610b0fb85240ce3edc7
5
5
  SHA512:
6
- metadata.gz: 0cec621922c04cbefa6047adf59a648413c72253366172d2beda895708c6559ce52d79c07a13a71f20b573e04b3c6de69e0dc30c69ef07def99afc2689c3284b
7
- data.tar.gz: a927d96b5e3c2725643ae0b20aea75147281d288de88d5dd578306c83559c2a27227217c4afb8e3639d7afa2fa4d8498365b6b142b3d8b976a5b9a44cd36e40e
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 = 'Bibliographic references for asciidoc'
13
+ spec.summary = 'Citations and bibliography the "asciidoctor-way"'
14
14
  spec.description = <<~END
15
- asciidoctor-bibliography adds bibliography support for asciidoc documents by introducing
16
- two new macros: `cite:[KEY]` and `bibliography::[]`. Citations are parsed and
17
- replaced with formatted inline texts, and reference lists are automatically
18
- generated and inserted into where `bibliography::[]` is placed. The
19
- references are formatted using styles provided by CSL.
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'
@@ -1,3 +1,3 @@
1
1
  module AsciidoctorBibliography
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
@@ -1,4 +1,4 @@
1
- = Sample of using asciidoctor-bibtex
1
+ = Sample usage of asciidoctor-bibliography
2
2
  :bibliography-database: biblio.bib
3
3
  :bibliography-hyperlinks: false
4
4
 
@@ -1,4 +1,4 @@
1
- = Sample of using asciidoctor-bibtex
1
+ = Sample usage of asciidoctor-bibliography
2
2
  :bibliography-database: biblio.bib
3
3
  :bibliography-reference-style: din-1505-2-alphanumeric
4
4
 
@@ -1,4 +1,4 @@
1
- = Sample of using asciidoctor-bibtex
1
+ = Sample usage of asciidoctor-bibliography
2
2
  :bibliography-database: biblio.bib
3
3
  :bibliography-reference-style: ieee
4
4
 
@@ -1,4 +1,4 @@
1
- = Sample of using asciidoctor-bibtex
1
+ = Sample usage of asciidoctor-bibliography
2
2
  :bibliography-database: biblio.bib
3
3
 
4
4
  ## Standard
@@ -1,4 +1,4 @@
1
- = Sample of using asciidoctor-bibtex
1
+ = Sample usage of asciidoctor-bibliography
2
2
  :bibliography-database: biblio.bib
3
3
  :bibliography-reference-style: din-1505-2-alphanumeric
4
4
 
@@ -1,4 +1,4 @@
1
- = Sample of using asciidoctor-bibtex
1
+ = Sample usage of asciidoctor-bibliography
2
2
  :bibliography-database: biblio.bib
3
3
  :bibliography-order: appearance
4
4
  :bibliography-citation-style: numbers
@@ -1,4 +1,4 @@
1
- = Sample of using asciidoctor-bibtex
1
+ = Sample usage of asciidoctor-bibliography
2
2
  :bibliography-database: biblio.bib
3
3
  :bibliography-order: alphabetical
4
4
  :bibliography-citation-style: numbers
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.0
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 00:00:00.000000000 Z
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 adds bibliography support for asciidoc documents by introducing
183
- two new macros: `cite:[KEY]` and `bibliography::[]`. Citations are parsed and
184
- replaced with formatted inline texts, and reference lists are automatically
185
- generated and inserted into where `bibliography::[]` is placed. The
186
- references are formatted using styles provided by CSL.
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: Bibliographic references for asciidoc
274
+ summary: Citations and bibliography the "asciidoctor-way"
268
275
  test_files: []