Sha256: ae8e0fa861d6a1ff0a7d35a365d9a3011b2daaf499b96be64805ded9d1c00bab

Contents?: true

Size: 854 Bytes

Versions: 92

Compression:

Stored size: 854 Bytes

Contents

Feature: Parse BibTeX preambles
	As a hacker who works with bibliographies
	I want to be able to parse BibTeX files with preambles
	Because they are part of the BibTeX format

	Scenario: A BibTeX file with preambles and strings
		When I parse the following file:
		"""
		%%
		%% This is a valid BibTeX File
		%%

		% Testing preamble statements

		@preamble{"This bibliography was created \today"}
		@preamble {  "Bib\TeX"  }

		@string{ maintainer = "Myself"}

		@preamble { "Maintained by " # maintainer }
		"""
		Then my bibliography should contain the following objects:
			| type     | value                                 |
			| preamble | This bibliography was created \\today |
			| preamble | Bib\\TeX                              |
			| string   | Myself                                |
			| preamble | "Maintained by " # maintainer         |

Version data entries

92 entries across 92 versions & 3 rubygems

Version Path
bibtex-ruby-6.1.0 features/preambles.feature
bibtex-ruby-6.0.0 features/preambles.feature
bibtex-ruby-5.1.6 features/preambles.feature
bibtex-ruby-5.1.5 features/preambles.feature
metanorma-cli-1.3.4 gems/ruby/2.6.0/gems/bibtex-ruby-5.1.4/features/preambles.feature
metanorma-cli-1.3.3.1 gems/ruby/2.6.0/gems/bibtex-ruby-5.1.4/features/preambles.feature
bibtex-ruby-5.1.4 features/preambles.feature
bibtex-ruby-5.1.3 features/preambles.feature
bibtex-ruby-5.1.2 features/preambles.feature
bibtex-ruby-5.1.1 features/preambles.feature
bibtex-ruby-5.1.0 features/preambles.feature
bibtex-ruby-5.0.1 features/preambles.feature
bibtex-ruby-5.0.0 features/preambles.feature
bibtex-ruby-4.4.7 features/preambles.feature
bibtex-ruby-4.4.6 features/preambles.feature
bibtex-ruby-4.4.5 features/preambles.feature
bibtex_to_scrapbox-0.2.0 gems/gems/bibtex-ruby-4.4.4/features/preambles.feature
bibtex_to_scrapbox-0.1.0 gems/gems/bibtex-ruby-4.4.4/features/preambles.feature
bibtex-ruby-4.4.4 features/preambles.feature
bibtex-ruby-4.4.3 features/preambles.feature