Sha256: 2246ecb3c5aca4930073941be7506bf6ae52131024f976e673a863aa4a337f18
Contents?: true
Size: 1.17 KB
Versions: 4
Compression:
Stored size: 1.17 KB
Contents
Feature: name As a CSL cite processor hacker I want the test name_ParticleCaps1 to pass @citation @name @citations Scenario: Particle Caps1 Given the following style: """ <style xmlns="http://purl.org/net/xbiblio/csl" class="note" version="1.0" demote-non-dropping-particle="sort-only"> <info> <id /> <title /> <updated>2009-08-10T04:49:00+09:00</updated> </info> <citation> <layout> <group prefix="(" suffix=")"> <names variable="author" delimiter="; "> <name delimiter=", " form="short"/> </names> </group> </layout> </citation> </style> """ And the following input: """ [{"author":[{"family":"van One","given":"Onename"},{"family":"van Two","given":"Twoname"}],"id":"ITEM-1","type":"book"},{"author":[{"family":"van Three","given":"Threename"},{"family":"Van Four","given":"Fourname"}],"id":"ITEM-2","type":"book"}] """ And I have a citations input When I cite all items Then the result should be: """ ..[0] (van One, van Two) >>[1] (van Three, Van Four) """
Version data entries
4 entries across 4 versions & 1 rubygems