Feature: locator As a CSL cite processor hacker I want the test locator_SimpleLocators to pass @citation @locator @citation-items Scenario: Simple Locators Given the following style: """ """ And the following input: """ [{"author":[{"family":"Doe","given":"John","static-ordering":false}],"id":"ITEM-1","issued":{"date-parts":[["2000"]]},"title":"Book A","type":"book"},{"author":[{"family":"Roe","given":"Jane"}],"id":"ITEM-2","issued":{"date-parts":[["2001"]]},"title":"Book B","type":"book"}] """ When I cite the following items: """ [[{"id":"ITEM-1","label":"page","locator":"100 - 103"},{"id":"ITEM-2","label":"chapter","locator":"200 - 201"}]] """ Then the results should be: | Doe, Book A, 2000, pp. 100–103; Roe, Book B, 2001, chap. 200–201. |