├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── gradle.yml │ └── stale.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE.txt ├── README.md ├── citeproc-java-tool ├── build.gradle └── src │ ├── main │ └── java │ │ └── de │ │ └── undercouch │ │ └── citeproc │ │ ├── CSLTool.java │ │ ├── helper │ │ └── tool │ │ │ ├── CachingBibliographyFileReader.java │ │ │ └── ToolUtils.java │ │ └── tool │ │ ├── AbstractCSLToolCommand.java │ │ ├── BibliographyCommand.java │ │ ├── CSLToolCommand.java │ │ ├── CSLToolContext.java │ │ ├── CitationCommand.java │ │ ├── CitationIdsCommand.java │ │ ├── HelpCommand.java │ │ ├── InputFileCommand.java │ │ ├── JsonCommand.java │ │ ├── ListCommand.java │ │ ├── ProviderCommand.java │ │ ├── ShellCommand.java │ │ └── shell │ │ ├── AdditionalShellCommands.java │ │ ├── ConsoleInputReader.java │ │ ├── ErrorOutputStream.java │ │ ├── ShellCommandCompleter.java │ │ ├── ShellCommandParser.java │ │ ├── ShellContext.java │ │ ├── ShellExitCommand.java │ │ ├── ShellGetCommand.java │ │ ├── ShellGetFormatCommand.java │ │ ├── ShellGetLocaleCommand.java │ │ ├── ShellGetStyleCommand.java │ │ ├── ShellHelpCommand.java │ │ ├── ShellLoadCommand.java │ │ ├── ShellQuitCommand.java │ │ ├── ShellSetCommand.java │ │ ├── ShellSetFormatCommand.java │ │ ├── ShellSetLocaleCommand.java │ │ └── ShellSetStyleCommand.java │ └── test │ └── java │ └── de │ └── undercouch │ └── citeproc │ └── tool │ └── shell │ ├── ShellCommandCompleterTest.java │ └── ShellCommandParserTest.java ├── citeproc-java ├── build.gradle ├── grammars │ ├── InternalName.g4 │ ├── InternalNumber.g4 │ └── InternalPage.g4 ├── src │ ├── main │ │ └── java │ │ │ └── de │ │ │ └── undercouch │ │ │ └── citeproc │ │ │ ├── AbbreviationProvider.java │ │ │ ├── BibliographyFileReader.java │ │ │ ├── CSL.java │ │ │ ├── CSLBuilder.java │ │ │ ├── CompoundItemDataProvider.java │ │ │ ├── DefaultAbbreviationProvider.java │ │ │ ├── DefaultLocaleProvider.java │ │ │ ├── ItemDataProvider.java │ │ │ ├── ListItemDataProvider.java │ │ │ ├── LocaleProvider.java │ │ │ ├── bibtex │ │ │ ├── BibTeXConverter.java │ │ │ ├── BibTeXItemDataProvider.java │ │ │ ├── DateParser.java │ │ │ ├── NameParser.java │ │ │ ├── PageParser.java │ │ │ ├── PageRange.java │ │ │ └── PageRanges.java │ │ │ ├── csl │ │ │ ├── CitationIDIndexPair.java │ │ │ └── internal │ │ │ │ ├── CollectingVariableListener.java │ │ │ │ ├── CountingVariableListener.java │ │ │ │ ├── GeneratedCitation.java │ │ │ │ ├── RenderContext.java │ │ │ │ ├── SBibliography.java │ │ │ │ ├── SCitation.java │ │ │ │ ├── SCitationLayout.java │ │ │ │ ├── SElement.java │ │ │ │ ├── SKey.java │ │ │ │ ├── SLayout.java │ │ │ │ ├── SMacro.java │ │ │ │ ├── SRenderingElementContainer.java │ │ │ │ ├── SRenderingElementContainerElement.java │ │ │ │ ├── SSort.java │ │ │ │ ├── SStyle.java │ │ │ │ ├── TokenBuffer.java │ │ │ │ ├── VariableForm.java │ │ │ │ ├── VariableListener.java │ │ │ │ ├── behavior │ │ │ │ ├── Affixes.java │ │ │ │ ├── Behavior.java │ │ │ │ ├── Display.java │ │ │ │ ├── FormattingAttributes.java │ │ │ │ ├── Quotes.java │ │ │ │ ├── StripPeriods.java │ │ │ │ └── TextCase.java │ │ │ │ ├── format │ │ │ │ ├── AsciiDocFormat.java │ │ │ │ ├── BaseFormat.java │ │ │ │ ├── FoFormat.java │ │ │ │ ├── Format.java │ │ │ │ ├── HtmlFormat.java │ │ │ │ ├── MarkdownFormat.java │ │ │ │ ├── MarkdownPureFormat.java │ │ │ │ └── TextFormat.java │ │ │ │ ├── helper │ │ │ │ ├── NumberElement.java │ │ │ │ └── NumberParser.java │ │ │ │ ├── locale │ │ │ │ ├── LDate.java │ │ │ │ ├── LLocale.java │ │ │ │ ├── LStyleOptions.java │ │ │ │ └── LTerm.java │ │ │ │ ├── rendering │ │ │ │ ├── SChoose.java │ │ │ │ ├── SDate.java │ │ │ │ ├── SDatePart.java │ │ │ │ ├── SGroup.java │ │ │ │ ├── SLabel.java │ │ │ │ ├── SName.java │ │ │ │ ├── SNameInheritableAttributes.java │ │ │ │ ├── SNames.java │ │ │ │ ├── SNumber.java │ │ │ │ ├── SRenderingElement.java │ │ │ │ ├── SSubstitute.java │ │ │ │ ├── SText.java │ │ │ │ └── condition │ │ │ │ │ ├── SCondition.java │ │ │ │ │ ├── SElse.java │ │ │ │ │ └── SIf.java │ │ │ │ └── token │ │ │ │ ├── DisplayGroupToken.java │ │ │ │ ├── TextToken.java │ │ │ │ └── Token.java │ │ │ └── helper │ │ │ ├── AlphanumComparator.java │ │ │ ├── CSLUtils.java │ │ │ ├── FrenchPunctuationSpacing.java │ │ │ ├── Levenshtein.java │ │ │ ├── NodeHelper.java │ │ │ ├── NumberHelper.java │ │ │ ├── PageRangeFormatter.java │ │ │ ├── SmartQuotes.java │ │ │ ├── StringHelper.java │ │ │ ├── json │ │ │ ├── JsonBuilder.java │ │ │ ├── JsonBuilderFactory.java │ │ │ ├── JsonLexer.java │ │ │ ├── JsonObject.java │ │ │ ├── JsonParser.java │ │ │ ├── MapJsonBuilder.java │ │ │ ├── MapJsonBuilderFactory.java │ │ │ ├── StringJsonBuilder.java │ │ │ └── StringJsonBuilderFactory.java │ │ │ └── time │ │ │ ├── AnyDateParser.java │ │ │ └── ParsedDate.java │ └── test │ │ ├── java │ │ └── de │ │ │ └── undercouch │ │ │ └── citeproc │ │ │ ├── CSLTest.java │ │ │ ├── CompoundItemDataProviderTest.java │ │ │ ├── FixturesTest.java │ │ │ ├── bibtex │ │ │ ├── AbstractBibTeXTest.java │ │ │ ├── BibTeXConverterTest.java │ │ │ ├── BibTeXItemDataProviderTest.java │ │ │ ├── DateParserTest.java │ │ │ ├── NameParserTest.java │ │ │ └── PageParserTest.java │ │ │ ├── csl │ │ │ ├── CSLCitationItemBuilderTest.java │ │ │ └── internal │ │ │ │ ├── format │ │ │ │ ├── HtmlFormatTest.java │ │ │ │ ├── MarkdownFormatTest.java │ │ │ │ └── MarkdownPureFormatTest.java │ │ │ │ └── helper │ │ │ │ └── NumberParserTest.java │ │ │ ├── endnote │ │ │ ├── EndNoteConverterTest.java │ │ │ └── EndNoteParserTest.java │ │ │ ├── helper │ │ │ ├── AlphanumComparatorTest.java │ │ │ ├── FrenchPunctuationSpacingTest.java │ │ │ ├── LevenshteinTest.java │ │ │ ├── NumberHelperTest.java │ │ │ ├── PageRangeFormatterTest.java │ │ │ ├── SmartQuotesTest.java │ │ │ ├── StringHelperTest.java │ │ │ ├── json │ │ │ │ ├── JsonLexerTest.java │ │ │ │ ├── JsonParserTest.java │ │ │ │ ├── MapJsonBuilderTest.java │ │ │ │ └── StringJsonBuilderTest.java │ │ │ └── time │ │ │ │ └── AnyDateParserTest.java │ │ │ └── ris │ │ │ ├── RISConverterTest.java │ │ │ └── RISParserTest.java │ │ └── resources │ │ ├── fixtures │ │ ├── README.md │ │ ├── abbreviations.yaml │ │ ├── bibliography-formatting-attributes.yaml │ │ ├── bibliography-no-layout.yaml │ │ ├── bibliography-sort-descending.yaml │ │ ├── bibliography-sort-empty-value.yaml │ │ ├── bibliography-sort-invalid-key.yaml │ │ ├── bibliography-sort-macro.yaml │ │ ├── bibliography-sort-multiple-keys.yaml │ │ ├── bibliography-sort-renumber.yaml │ │ ├── bibliography-sort-same.yaml │ │ ├── bibliography-sort-variable.yaml │ │ ├── bibliography-sort.yaml │ │ ├── choose-number.yaml │ │ ├── citation-affix-space.yaml │ │ ├── citation-affix.yaml │ │ ├── citation-apa-unix.yaml │ │ ├── citation-formatting-attributes.yaml │ │ ├── citation-key.yaml │ │ ├── citation-multiple.yaml │ │ ├── citation-no-delimiter.yaml │ │ ├── citation-no-layout.yaml │ │ ├── citation-prefix-suffix.yaml │ │ ├── citation-suppress-variable.yaml │ │ ├── date-ad-bc-locale.yaml │ │ ├── date-ad-bc.yaml │ │ ├── date-delimiter-merge-day.yaml │ │ ├── date-delimiter-merge-month-range-delimiter.yaml │ │ ├── date-delimiter-merge-month.yaml │ │ ├── date-delimiter.yaml │ │ ├── date-parts-both-form.yaml │ │ ├── date-parts-both.yaml │ │ ├── date-parts-default-form-numeric.yaml │ │ ├── date-parts-default-form.yaml │ │ ├── date-parts-default.yaml │ │ ├── date-parts-form-invalid.yaml │ │ ├── date-parts-invalid-both-form.yaml │ │ ├── date-parts-invalid-both.yaml │ │ ├── date-parts-invalid.yaml │ │ ├── date-parts-year-month-day-numeric.yaml │ │ ├── date-parts-year-month-day.yaml │ │ ├── date-parts-year-month.yaml │ │ ├── date-parts-year-no-form.yaml │ │ ├── date-parts-year.yaml │ │ ├── date-raw-and-date-parts.yaml │ │ ├── date-raw-and-normal.yaml │ │ ├── date-raw-year-and-month.yaml │ │ ├── date-raw-year-only.yaml │ │ ├── group-empty-variables-condition.yaml │ │ ├── group-empty-variables.yaml │ │ ├── group-font-style.yaml │ │ ├── hanging-indent.yaml │ │ ├── label-after-name.yaml │ │ ├── label-before-name.yaml │ │ ├── label-edition.yaml │ │ ├── label-empty-variable.yaml │ │ ├── label-forms.yaml │ │ ├── label-locator-affix.yaml │ │ ├── label-locator.yaml │ │ ├── label-no-variable.yaml │ │ ├── label-non-numeric-page.yaml │ │ ├── label-number-infix.yaml │ │ ├── label-number-lastlabel.yaml │ │ ├── label-number-merge.yaml │ │ ├── label-plural.yaml │ │ ├── links-escape.yaml │ │ ├── links-prefix.yaml │ │ ├── links.yaml │ │ ├── locale-override-multiple.yaml │ │ ├── locale-override.yaml │ │ ├── macro-no-name.yaml │ │ ├── name-as-sort-order-first.yaml │ │ ├── name-as-sort-order.yaml │ │ ├── name-delimiter-precedes-last-always-2.yaml │ │ ├── name-delimiter-precedes-last-always-3.yaml │ │ ├── name-delimiter-precedes-last-contextual-2.yaml │ │ ├── name-delimiter-precedes-last-contextual-3.yaml │ │ ├── name-delimiter-precedes-last-inverted-2-all.yaml │ │ ├── name-delimiter-precedes-last-inverted-2-first.yaml │ │ ├── name-delimiter-precedes-last-inverted-2-none.yaml │ │ ├── name-delimiter-precedes-last-inverted-3-all.yaml │ │ ├── name-delimiter-precedes-last-inverted-3-first.yaml │ │ ├── name-delimiter-precedes-last-inverted-3-none.yaml │ │ ├── name-delimiter-precedes-last-never-2.yaml │ │ ├── name-delimiter-precedes-last-never-3.yaml │ │ ├── name-delimiter-space.yaml │ │ ├── name-empty-name.yaml │ │ ├── name-form-count-et-al-0.yaml │ │ ├── name-form-count-et-al-4.yaml │ │ ├── name-form-count-et-al.yaml │ │ ├── name-form-count.yaml │ │ ├── name-form-invalid.yaml │ │ ├── name-form-long.yaml │ │ ├── name-form-short-particles.yaml │ │ ├── name-form-short.yaml │ │ ├── name-initialize-false-override.yaml │ │ ├── name-initialize-false.yaml │ │ ├── name-initialize-hyphen.yaml │ │ ├── name-initialize-james-t.yaml │ │ ├── name-initialize-style-merge.yaml │ │ ├── name-initialize-various-false.yaml │ │ ├── name-initialize-various.yaml │ │ ├── name-initialize-with-spaces.yaml │ │ ├── name-literal-and-given-family.yaml │ │ ├── name-literal.yaml │ │ ├── name-no-and.yaml │ │ ├── name-no-family-short.yaml │ │ ├── name-no-family.yaml │ │ ├── name-no-given-name-as-sort-order.yaml │ │ ├── name-no-given.yaml │ │ ├── name-no-initialize.yaml │ │ ├── name-part-particles.yaml │ │ ├── name-particle-with-apostrophe.yaml │ │ ├── name-particles.yaml │ │ ├── names-affix-label.yaml │ │ ├── names-editor-translator-no-translator.yaml │ │ ├── names-editors.yaml │ │ ├── names-empty-variable.yaml │ │ ├── names-et-al-first-no-min.yaml │ │ ├── names-et-al-min-delimiter-never.yaml │ │ ├── names-et-al-min-equals.yaml │ │ ├── names-et-al-min-inherited-bibliography.yaml │ │ ├── names-et-al-min-inherited-citation.yaml │ │ ├── names-et-al-min-inherited-override.yaml │ │ ├── names-et-al-min-inherited-style.yaml │ │ ├── names-et-al-min-less.yaml │ │ ├── names-et-al-min-no-first.yaml │ │ ├── names-et-al-min-use-first-0.yaml │ │ ├── names-et-al-min-use-first-equals.yaml │ │ ├── names-et-al-min-use-first-et-al-comma.yaml │ │ ├── names-et-al-min-use-first.yaml │ │ ├── names-et-al-min.yaml │ │ ├── names-multiple-count-and-non-count.yaml │ │ ├── names-multiple-count-with-label.yaml │ │ ├── names-multiple-count.yaml │ │ ├── names-multiple-duplicate.yaml │ │ ├── names-multiple-formatting.yaml │ │ ├── names-multiple-labels-duplicate.yaml │ │ ├── names-multiple-labels.yaml │ │ ├── names-multiple-non-count-and-count.yaml │ │ ├── names-multiple.yaml │ │ ├── names-no-delimiter-no-and.yaml │ │ ├── names-no-name-but-label.yaml │ │ ├── names-no-name.yaml │ │ ├── names-no-variable.yaml │ │ ├── names-substitute.yaml │ │ ├── no-date-year-suffix.yaml │ │ ├── no-date.yaml │ │ ├── position-first-again-another.yaml │ │ ├── position-first-again.yaml │ │ ├── position-first.yaml │ │ ├── position-ibid-two-citations-single-cite.yaml │ │ ├── position-ibid-two-citations.yaml │ │ ├── position-ibid-two-items.yaml │ │ ├── position-ibid.yaml │ │ ├── punctuation-french-orthography.yaml │ │ ├── quotes-no-content.yaml │ │ ├── second-field-align-false.yaml │ │ ├── second-field-align-flush-choose.yaml │ │ ├── second-field-align-flush-group.yaml │ │ ├── second-field-align-flush-macro.yaml │ │ ├── second-field-align-flush.yaml │ │ ├── second-field-align-invalid.yaml │ │ ├── second-field-align-margin.yaml │ │ ├── second-field-align-true-empty.yaml │ │ ├── simple.yaml │ │ ├── style-apa-no-date.yaml │ │ ├── style-apa-unix-html.yaml │ │ ├── style-apa-unix.yaml │ │ ├── style-apa.yaml │ │ ├── style-harvard-cite-them-right.yaml │ │ ├── style-ieee-unix.yaml │ │ ├── style-ieee.yaml │ │ ├── text-affix-punctuation.yaml │ │ ├── text-display-merge-punctuation.yaml │ │ ├── text-dont-merge-parens-in-affix.yaml │ │ ├── text-empty-term.yaml │ │ ├── text-empty-value.yaml │ │ ├── text-empty-variable.yaml │ │ ├── text-formatting-display-nested.yaml │ │ ├── text-formatting-embedded.yaml │ │ ├── text-formatting-invalid.yaml │ │ ├── text-formatting-nested.yaml │ │ ├── text-formatting-order.yaml │ │ ├── text-formatting.yaml │ │ ├── text-invalid-variable.yaml │ │ ├── text-locator-no-label.yaml │ │ ├── text-number-no-label.yaml │ │ ├── text-text-case.yaml │ │ ├── text-title-apostrophe-german.yaml │ │ ├── text-title-apostrophe.yaml │ │ ├── text-title-punctuation.yaml │ │ ├── text-title-quotes-layout-suffix-no-in-quote.yaml │ │ ├── text-title-quotes-layout-suffix-question.yaml │ │ ├── text-title-quotes-layout-suffix.yaml │ │ ├── text-title-quotes-suffix.yaml │ │ └── text-variable-short.yaml │ │ ├── test-suite-overrides │ │ ├── affix_CommaAfterQuote.yaml │ │ ├── affix_WordProcessorAffixNoSpace.yaml │ │ ├── bugreports_AccidentalAllCaps.yaml │ │ ├── condition_RefTypeBranching.yaml │ │ ├── display_LostSuffix.yaml │ │ ├── group_ComplexNesting.yaml │ │ ├── group_SuppressWithEmptyNestedDateNode.yaml │ │ ├── name_WesternPrimaryFontStyle.yaml │ │ ├── name_WesternPrimaryFontStyleTwoAuthors.yaml │ │ ├── simplespace_case1.yaml │ │ └── textcase_RepeatedTitleBug.yaml │ │ └── unix.bib.gz └── templates │ ├── Bibliography.json │ ├── Builder.java │ ├── CSLCitation.json │ ├── CSLCitationItem.json │ ├── CSLDate.json │ ├── CSLItemData.json │ ├── CSLLabel.json │ ├── CSLName.json │ ├── CSLProperties.json │ ├── CSLType.json │ ├── Citation.json │ ├── Converter.java │ ├── EndNoteParser.json │ ├── EndNoteReference.json │ ├── EndNoteType.json │ ├── ItemDataProvider.java │ ├── Library.java │ ├── Object.java │ ├── Parser.java │ ├── RISParser.json │ ├── RISReference.json │ ├── RISType.json │ ├── SecondFieldAlign.json │ ├── SelectionMode.json │ └── Type.java ├── codecov.yml ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: michel-kraemer 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/README.md -------------------------------------------------------------------------------- /citeproc-java-tool/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/build.gradle -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/CSLTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/CSLTool.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/helper/tool/CachingBibliographyFileReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/helper/tool/CachingBibliographyFileReader.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/helper/tool/ToolUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/helper/tool/ToolUtils.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/AbstractCSLToolCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/AbstractCSLToolCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/BibliographyCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/BibliographyCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CSLToolCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CSLToolCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CSLToolContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CSLToolContext.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CitationCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CitationCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CitationIdsCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/CitationIdsCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/HelpCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/HelpCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/InputFileCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/InputFileCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/JsonCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/JsonCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/ListCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/ListCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/ProviderCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/ProviderCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/ShellCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/ShellCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/AdditionalShellCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/AdditionalShellCommands.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ConsoleInputReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ConsoleInputReader.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ErrorOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ErrorOutputStream.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellCommandCompleter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellCommandCompleter.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellCommandParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellCommandParser.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellContext.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellExitCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellExitCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetFormatCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetFormatCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetLocaleCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetLocaleCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetStyleCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellGetStyleCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellHelpCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellHelpCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellLoadCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellLoadCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellQuitCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellQuitCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetFormatCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetFormatCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetLocaleCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetLocaleCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetStyleCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/main/java/de/undercouch/citeproc/tool/shell/ShellSetStyleCommand.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/test/java/de/undercouch/citeproc/tool/shell/ShellCommandCompleterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/test/java/de/undercouch/citeproc/tool/shell/ShellCommandCompleterTest.java -------------------------------------------------------------------------------- /citeproc-java-tool/src/test/java/de/undercouch/citeproc/tool/shell/ShellCommandParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java-tool/src/test/java/de/undercouch/citeproc/tool/shell/ShellCommandParserTest.java -------------------------------------------------------------------------------- /citeproc-java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/build.gradle -------------------------------------------------------------------------------- /citeproc-java/grammars/InternalName.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/grammars/InternalName.g4 -------------------------------------------------------------------------------- /citeproc-java/grammars/InternalNumber.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/grammars/InternalNumber.g4 -------------------------------------------------------------------------------- /citeproc-java/grammars/InternalPage.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/grammars/InternalPage.g4 -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/AbbreviationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/AbbreviationProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/BibliographyFileReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/BibliographyFileReader.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/CSL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/CSL.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/CSLBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/CSLBuilder.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/CompoundItemDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/CompoundItemDataProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/DefaultAbbreviationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/DefaultAbbreviationProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/DefaultLocaleProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/DefaultLocaleProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/ItemDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/ItemDataProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/ListItemDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/ListItemDataProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/LocaleProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/LocaleProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/BibTeXConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/BibTeXConverter.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/BibTeXItemDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/BibTeXItemDataProvider.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/DateParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/DateParser.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/NameParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/NameParser.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/PageParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/PageParser.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/PageRange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/PageRange.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/PageRanges.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/bibtex/PageRanges.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/CitationIDIndexPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/CitationIDIndexPair.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/CollectingVariableListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/CollectingVariableListener.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/CountingVariableListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/CountingVariableListener.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/GeneratedCitation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/GeneratedCitation.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/RenderContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/RenderContext.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SBibliography.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SBibliography.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SCitation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SCitation.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SCitationLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SCitationLayout.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SElement.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SKey.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SLayout.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SMacro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SMacro.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SRenderingElementContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SRenderingElementContainer.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SRenderingElementContainerElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SRenderingElementContainerElement.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SSort.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/SStyle.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/TokenBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/TokenBuffer.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/VariableForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/VariableForm.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/VariableListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/VariableListener.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Affixes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Affixes.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Behavior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Behavior.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Display.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Display.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/FormattingAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/FormattingAttributes.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Quotes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/Quotes.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/StripPeriods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/StripPeriods.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/TextCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/behavior/TextCase.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/AsciiDocFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/AsciiDocFormat.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/BaseFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/BaseFormat.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/FoFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/FoFormat.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/Format.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/Format.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/HtmlFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/HtmlFormat.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/MarkdownFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/MarkdownFormat.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/MarkdownPureFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/MarkdownPureFormat.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/TextFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/format/TextFormat.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/helper/NumberElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/helper/NumberElement.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/helper/NumberParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/helper/NumberParser.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LDate.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LLocale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LLocale.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LStyleOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LStyleOptions.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LTerm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/locale/LTerm.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SChoose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SChoose.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SDate.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SDatePart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SDatePart.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SGroup.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SLabel.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SName.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SNameInheritableAttributes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SNameInheritableAttributes.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SNames.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SNumber.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SRenderingElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SRenderingElement.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SSubstitute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SSubstitute.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/SText.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/condition/SCondition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/condition/SCondition.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/condition/SElse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/condition/SElse.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/condition/SIf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/rendering/condition/SIf.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/token/DisplayGroupToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/token/DisplayGroupToken.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/token/TextToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/token/TextToken.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/token/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/csl/internal/token/Token.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/AlphanumComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/AlphanumComparator.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/CSLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/CSLUtils.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/FrenchPunctuationSpacing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/FrenchPunctuationSpacing.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/Levenshtein.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/Levenshtein.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/NodeHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/NodeHelper.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/NumberHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/NumberHelper.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/PageRangeFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/PageRangeFormatter.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/SmartQuotes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/SmartQuotes.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/StringHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/StringHelper.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonBuilder.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonBuilderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonBuilderFactory.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonLexer.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonObject.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/JsonParser.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/MapJsonBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/MapJsonBuilder.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/MapJsonBuilderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/MapJsonBuilderFactory.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/StringJsonBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/StringJsonBuilder.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/StringJsonBuilderFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/json/StringJsonBuilderFactory.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/time/AnyDateParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/time/AnyDateParser.java -------------------------------------------------------------------------------- /citeproc-java/src/main/java/de/undercouch/citeproc/helper/time/ParsedDate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/main/java/de/undercouch/citeproc/helper/time/ParsedDate.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/CSLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/CSLTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/CompoundItemDataProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/CompoundItemDataProviderTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/FixturesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/FixturesTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/AbstractBibTeXTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/AbstractBibTeXTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/BibTeXConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/BibTeXConverterTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/BibTeXItemDataProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/BibTeXItemDataProviderTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/DateParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/DateParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/NameParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/NameParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/PageParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/bibtex/PageParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/csl/CSLCitationItemBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/csl/CSLCitationItemBuilderTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/format/HtmlFormatTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/format/HtmlFormatTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/format/MarkdownFormatTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/format/MarkdownFormatTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/format/MarkdownPureFormatTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/format/MarkdownPureFormatTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/helper/NumberParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/csl/internal/helper/NumberParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/endnote/EndNoteConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/endnote/EndNoteConverterTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/endnote/EndNoteParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/endnote/EndNoteParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/AlphanumComparatorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/AlphanumComparatorTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/FrenchPunctuationSpacingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/FrenchPunctuationSpacingTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/LevenshteinTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/LevenshteinTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/NumberHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/NumberHelperTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/PageRangeFormatterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/PageRangeFormatterTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/SmartQuotesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/SmartQuotesTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/StringHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/StringHelperTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/JsonLexerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/JsonLexerTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/JsonParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/JsonParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/MapJsonBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/MapJsonBuilderTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/StringJsonBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/json/StringJsonBuilderTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/helper/time/AnyDateParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/helper/time/AnyDateParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/ris/RISConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/ris/RISConverterTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/java/de/undercouch/citeproc/ris/RISParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/java/de/undercouch/citeproc/ris/RISParserTest.java -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/README.md -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/abbreviations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/abbreviations.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-formatting-attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-formatting-attributes.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-no-layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-no-layout.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-descending.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-descending.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-empty-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-empty-value.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-invalid-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-invalid-key.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-macro.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-multiple-keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-multiple-keys.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-renumber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-renumber.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-same.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-same.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/bibliography-sort.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/bibliography-sort.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/choose-number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/choose-number.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-affix-space.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-affix-space.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-affix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-affix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-apa-unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-apa-unix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-formatting-attributes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-formatting-attributes.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-key.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-multiple.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-no-delimiter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-no-delimiter.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-no-layout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-no-layout.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-prefix-suffix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-prefix-suffix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/citation-suppress-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/citation-suppress-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-ad-bc-locale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-ad-bc-locale.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-ad-bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-ad-bc.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-delimiter-merge-day.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-delimiter-merge-day.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-delimiter-merge-month-range-delimiter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-delimiter-merge-month-range-delimiter.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-delimiter-merge-month.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-delimiter-merge-month.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-delimiter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-delimiter.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-both-form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-both-form.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-both.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-both.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-default-form-numeric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-default-form-numeric.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-default-form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-default-form.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-default.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-form-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-form-invalid.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-invalid-both-form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-invalid-both-form.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-invalid-both.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-invalid-both.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-invalid.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-year-month-day-numeric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-year-month-day-numeric.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-year-month-day.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-year-month-day.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-year-month.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-year-month.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-year-no-form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-year-no-form.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-parts-year.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-parts-year.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-raw-and-date-parts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-raw-and-date-parts.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-raw-and-normal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-raw-and-normal.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-raw-year-and-month.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-raw-year-and-month.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/date-raw-year-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/date-raw-year-only.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/group-empty-variables-condition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/group-empty-variables-condition.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/group-empty-variables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/group-empty-variables.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/group-font-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/group-font-style.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/hanging-indent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/hanging-indent.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-after-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-after-name.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-before-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-before-name.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-edition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-edition.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-empty-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-empty-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-forms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-forms.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-locator-affix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-locator-affix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-locator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-locator.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-no-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-no-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-non-numeric-page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-non-numeric-page.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-number-infix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-number-infix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-number-lastlabel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-number-lastlabel.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-number-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-number-merge.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/label-plural.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/label-plural.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/links-escape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/links-escape.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/links-prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/links-prefix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/links.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/locale-override-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/locale-override-multiple.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/locale-override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/locale-override.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/macro-no-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/macro-no-name.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-as-sort-order-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-as-sort-order-first.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-as-sort-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-as-sort-order.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-always-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-always-2.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-always-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-always-3.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-contextual-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-contextual-2.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-contextual-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-contextual-3.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-2-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-2-all.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-2-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-2-first.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-2-none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-2-none.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-3-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-3-all.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-3-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-3-first.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-3-none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-inverted-3-none.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-never-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-never-2.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-never-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-precedes-last-never-3.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-delimiter-space.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-delimiter-space.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-empty-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-empty-name.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-count-et-al-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-count-et-al-0.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-count-et-al-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-count-et-al-4.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-count-et-al.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-count-et-al.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-count.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-invalid.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-long.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-short-particles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-short-particles.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-form-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-form-short.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-false-override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-false-override.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-false.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-false.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-hyphen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-hyphen.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-james-t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-james-t.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-style-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-style-merge.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-various-false.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-various-false.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-various.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-various.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-initialize-with-spaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-initialize-with-spaces.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-literal-and-given-family.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-literal-and-given-family.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-literal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-literal.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-no-and.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-no-and.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-no-family-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-no-family-short.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-no-family.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-no-family.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-no-given-name-as-sort-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-no-given-name-as-sort-order.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-no-given.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-no-given.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-no-initialize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-no-initialize.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-part-particles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-part-particles.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-particle-with-apostrophe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-particle-with-apostrophe.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/name-particles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/name-particles.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-affix-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-affix-label.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-editor-translator-no-translator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-editor-translator-no-translator.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-editors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-editors.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-empty-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-empty-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-first-no-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-first-no-min.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-delimiter-never.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-delimiter-never.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-equals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-equals.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-bibliography.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-bibliography.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-citation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-citation.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-override.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-style.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-inherited-style.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-less.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-less.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-no-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-no-first.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first-0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first-0.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first-equals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first-equals.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first-et-al-comma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first-et-al-comma.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min-use-first.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-et-al-min.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-et-al-min.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-count-and-non-count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-count-and-non-count.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-count-with-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-count-with-label.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-count.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-duplicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-duplicate.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-formatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-formatting.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-labels-duplicate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-labels-duplicate.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-labels.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple-non-count-and-count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple-non-count-and-count.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-multiple.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-no-delimiter-no-and.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-no-delimiter-no-and.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-no-name-but-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-no-name-but-label.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-no-name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-no-name.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-no-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-no-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/names-substitute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/names-substitute.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/no-date-year-suffix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/no-date-year-suffix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/no-date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/no-date.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/position-first-again-another.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/position-first-again-another.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/position-first-again.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/position-first-again.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/position-first.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/position-first.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/position-ibid-two-citations-single-cite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/position-ibid-two-citations-single-cite.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/position-ibid-two-citations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/position-ibid-two-citations.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/position-ibid-two-items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/position-ibid-two-items.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/position-ibid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/position-ibid.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/punctuation-french-orthography.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/punctuation-french-orthography.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/quotes-no-content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/quotes-no-content.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-false.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-false.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-flush-choose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-flush-choose.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-flush-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-flush-group.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-flush-macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-flush-macro.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-flush.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-flush.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-invalid.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-margin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-margin.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/second-field-align-true-empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/second-field-align-true-empty.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/simple.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/style-apa-no-date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/style-apa-no-date.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/style-apa-unix-html.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/style-apa-unix-html.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/style-apa-unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/style-apa-unix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/style-apa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/style-apa.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/style-harvard-cite-them-right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/style-harvard-cite-them-right.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/style-ieee-unix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/style-ieee-unix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/style-ieee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/style-ieee.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-affix-punctuation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-affix-punctuation.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-display-merge-punctuation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-display-merge-punctuation.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-dont-merge-parens-in-affix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-dont-merge-parens-in-affix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-empty-term.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-empty-term.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-empty-value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-empty-value.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-empty-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-empty-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-formatting-display-nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-formatting-display-nested.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-formatting-embedded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-formatting-embedded.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-formatting-invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-formatting-invalid.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-formatting-nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-formatting-nested.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-formatting-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-formatting-order.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-formatting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-formatting.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-invalid-variable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-invalid-variable.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-locator-no-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-locator-no-label.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-number-no-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-number-no-label.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-text-case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-text-case.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-title-apostrophe-german.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-title-apostrophe-german.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-title-apostrophe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-title-apostrophe.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-title-punctuation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-title-punctuation.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-title-quotes-layout-suffix-no-in-quote.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-title-quotes-layout-suffix-no-in-quote.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-title-quotes-layout-suffix-question.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-title-quotes-layout-suffix-question.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-title-quotes-layout-suffix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-title-quotes-layout-suffix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-title-quotes-suffix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-title-quotes-suffix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/fixtures/text-variable-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/fixtures/text-variable-short.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/affix_CommaAfterQuote.yaml: -------------------------------------------------------------------------------- 1 | result: ‘quote’, Hello Thing 2 | -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/affix_WordProcessorAffixNoSpace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/affix_WordProcessorAffixNoSpace.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/bugreports_AccidentalAllCaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/bugreports_AccidentalAllCaps.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/condition_RefTypeBranching.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/condition_RefTypeBranching.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/display_LostSuffix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/display_LostSuffix.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/group_ComplexNesting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/group_ComplexNesting.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/group_SuppressWithEmptyNestedDateNode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/group_SuppressWithEmptyNestedDateNode.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/name_WesternPrimaryFontStyle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/name_WesternPrimaryFontStyle.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/name_WesternPrimaryFontStyleTwoAuthors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/name_WesternPrimaryFontStyleTwoAuthors.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/simplespace_case1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/simplespace_case1.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/test-suite-overrides/textcase_RepeatedTitleBug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/test-suite-overrides/textcase_RepeatedTitleBug.yaml -------------------------------------------------------------------------------- /citeproc-java/src/test/resources/unix.bib.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/src/test/resources/unix.bib.gz -------------------------------------------------------------------------------- /citeproc-java/templates/Bibliography.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Bibliography.json -------------------------------------------------------------------------------- /citeproc-java/templates/Builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Builder.java -------------------------------------------------------------------------------- /citeproc-java/templates/CSLCitation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLCitation.json -------------------------------------------------------------------------------- /citeproc-java/templates/CSLCitationItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLCitationItem.json -------------------------------------------------------------------------------- /citeproc-java/templates/CSLDate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLDate.json -------------------------------------------------------------------------------- /citeproc-java/templates/CSLItemData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLItemData.json -------------------------------------------------------------------------------- /citeproc-java/templates/CSLLabel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLLabel.json -------------------------------------------------------------------------------- /citeproc-java/templates/CSLName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLName.json -------------------------------------------------------------------------------- /citeproc-java/templates/CSLProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLProperties.json -------------------------------------------------------------------------------- /citeproc-java/templates/CSLType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/CSLType.json -------------------------------------------------------------------------------- /citeproc-java/templates/Citation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Citation.json -------------------------------------------------------------------------------- /citeproc-java/templates/Converter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Converter.java -------------------------------------------------------------------------------- /citeproc-java/templates/EndNoteParser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/EndNoteParser.json -------------------------------------------------------------------------------- /citeproc-java/templates/EndNoteReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/EndNoteReference.json -------------------------------------------------------------------------------- /citeproc-java/templates/EndNoteType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/EndNoteType.json -------------------------------------------------------------------------------- /citeproc-java/templates/ItemDataProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/ItemDataProvider.java -------------------------------------------------------------------------------- /citeproc-java/templates/Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Library.java -------------------------------------------------------------------------------- /citeproc-java/templates/Object.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Object.java -------------------------------------------------------------------------------- /citeproc-java/templates/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Parser.java -------------------------------------------------------------------------------- /citeproc-java/templates/RISParser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/RISParser.json -------------------------------------------------------------------------------- /citeproc-java/templates/RISReference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/RISReference.json -------------------------------------------------------------------------------- /citeproc-java/templates/RISType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/RISType.json -------------------------------------------------------------------------------- /citeproc-java/templates/SecondFieldAlign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/SecondFieldAlign.json -------------------------------------------------------------------------------- /citeproc-java/templates/SelectionMode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/SelectionMode.json -------------------------------------------------------------------------------- /citeproc-java/templates/Type.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/citeproc-java/templates/Type.java -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/codecov.yml -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- 1 | [versions] 2 | antlr = "4.12.0" 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michel-kraemer/citeproc-java/HEAD/settings.gradle --------------------------------------------------------------------------------