Sha256: 3e20c82e1705a6536879156efd91b95aaba869c5cb3f66f0d754c71e15e0e061

Contents?: true

Size: 910 Bytes

Versions: 4

Compression:

Stored size: 910 Bytes

Contents

Feature: label
  As a CSL cite processor hacker
  I want the test label_PluralPagesWithAlphaPrefix to pass

  @citation @label
  Scenario: Plural Pages With Alpha Prefix
    Given the following style:
    """
    <style 
          xmlns="http://purl.org/net/xbiblio/csl"
          class="note"
          version="1.0"
          page-range-format="expanded">
      <info>
        <id />
        <title />
        <updated>2009-08-10T04:49:00+09:00</updated>
      </info>
      <citation>
        <layout>
          <group delimiter=" ">
            <label variable="page"/>
            <text variable="page"/>
          </group>
        </layout>
      </citation>
    </style>
    """
    And the following input:
    """
    [{"id":"ITEM-1","page":"S213-S235","title":"His Anonymous Life","type":"book"}]
    """
    When I cite all items
    Then the result should be:
    """
    pages S213–S235
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citeproc-1.0.7 features/label/PluralPagesWithAlphaPrefix.feature
citeproc-1.0.6 features/label/PluralPagesWithAlphaPrefix.feature
citeproc-1.0.5 features/label/PluralPagesWithAlphaPrefix.feature
citeproc-1.0.4 features/label/PluralPagesWithAlphaPrefix.feature