Sha256: 30909365046d6c873b7161a1c7e582b4dc27a7a9190ed22edb3ac7df5aeb06aa
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
Feature: affix As a CSL cite processor hacker I want the test affix_PrefixFullCitationTextOnly to pass @citation @affix @citation-items Scenario: Prefix Full Citation Text Only Given the following style: """ <style xmlns="http://purl.org/net/xbiblio/csl" class="note" version="1.0"> <info> <id /> <title /> <updated>2007-10-26T21:32:52+02:00</updated> </info> <citation> <layout prefix="(" suffix=")"> <group delimiter=" "> <names variable="author"> <name form="short" /> </names> <date variable="issued"> <date-part name="year" /> </date> </group> </layout> </citation> </style> """ And the following input: """ [{"author":[{"family":"Smith","given":"John","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[["2000","2","15"]]},"title":"Book C","type":"book"}] """ When I cite the following items: """ [[{"id":"ITEM-1","prefix":"As written in"}]] """ Then the results should be: | (As written in Smith 2000) |
Version data entries
4 entries across 4 versions & 1 rubygems