summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2018-10-28resolves #669 allow authorinitials for single author to be overridden (PR #2943)Dan Allen
2018-10-27resolves #1639 generate manpage even if input is non-conforming or malformed ↵Dan Allen
(PR #2937)
2018-10-27upgrade linked version of highlight.js to 9.13.1Dan Allen
2018-10-27resolves #2769 report correct line number for inline anchor with id already ↵Dan Allen
in use (PR #2938)
2018-10-27resolves #1742 add support for starting line number on source block (PR #2941)Dan Allen
resolves #1742 add support for starting line number on source block
2018-10-27resolves #2779 track imagesdir on image node and in catalog (PR #2897)Dan Allen
- record the value of the imagesdir document attribute on the image node - record the value of the imagesdir document attribute when registering the image
2018-10-27resolves #2738 use part-signifier and chapter-signifier, if set (PR #2763)Dan Allen
- add value of part-signifier attribute to beginning of title for numbered part - add value of chapter-signifier attribute to beginning of title for numbered chapter - change trailing delimiter of part number from period to colon
2018-10-27resolves #2770 use OS independent timezone in time attributes (PR #2784)Dan Allen
- use timezone offset instead of OS dependent timezone string - use UTC if offset is 0 - add tests
2018-10-27clean up test that executes asciidoctor CLIDan Allen
- configure open3 to autoload - use block form of popen3 to ensure streams are closed - minor cleanups
2018-10-26resolves #2108 use Pathname to resolve relative path for file outside base ↵Dan Allen
directory (PR #2748) - autoload pathname - use Pathname#relative_path_from to resolve path outside base directory - add test
2018-10-26resolves #2783 define any character match to be compatible with JavaScript ↵Dan Allen
(PR #2933)
2018-10-26resolves #2915 add support for start attribute on source block in DocBook ↵Dan Allen
output (PR #2935)
2018-10-25change authors API to compute authors on demand from document attributesDan Allen
2018-10-25resolves #1042 add API to retrieve authors as arrayGuillaume Grossetie
2018-10-23resolves #2931 fix crash when child section of part is out of sequence and ↵Dan Allen
section numbering is enabled (PR #2932)
2018-10-21resolves #2926 automatically assign title and caption on image block if ↵Dan Allen
title is set on custom block source (PR #2927)
2018-10-20resolves #2918 add support for range syntax to highlight attribute on source ↵Dan Allen
block (PR #2924) - add support for range syntax (.. delimiter) to highlight attribute on source block - add support for unbounded range to highlight attribute on source block - add test for highlight attribute on source block
2018-10-19resolves #2888 don't hang on description list item that begins with /// (PR ↵Dan Allen
#2923) - regexps for any list item and description list item must agree
2018-10-18verify comment line that looks like top-level description list term is skippedDan Allen
2018-10-18verify line comment that looks like sibling description list item is skippedDan Allen
2018-10-14resolves #2914 interpret open line range as infinite (PR #2917)Dan Allen
2018-10-12resolves #2067 allow filter block passed to AbstractBlock#find_by to skip ↵Dan Allen
subtrees (PR #2902) - interpret :skip return value of filter block to mean skip node and its descendants - interpret :skip_children return value of filter block to mean accept node, but skip its descendants
2018-10-11resolves #2910 parse attrlist on inline passthrough using ↵Dan Allen
parse_quoted_text_attributes instead parse_attributes
2018-10-11resolves #2882 don't crash when restoring passthroughs when passthrough role ↵Dan Allen
is enclosed in single quotes
2018-10-10don't hide URI scheme if target of link macro is a bare URI scheme (PR #2909)Dan Allen
2018-10-10resolves #2905 only apply subs to node attribute value enclosed in single ↵Dan Allen
quotes (PR #2906)
2018-10-08resolves #2900 change AbstractBlock#find_by to honor StopIteration exception ↵Dan Allen
(PR #2901)
2018-10-06resolves #2798 colspecs can be separated by semi-colon instead of comma (PR ↵Dan Allen
#2898)
2018-10-01resolves #1360 preserve comment guard on callout when icons not enabled (PR ↵Dan Allen
#2893) - when icons are not enabled, preserve the comment guard in front of the callout number in verbatim blocks
2018-10-01make space before callout number after custom line comment character optionalDan Allen
- this makes custom line comment character behave like built-in characters
2018-09-30fail if name given to block macro contains illegal charactersDan Allen
2018-09-29normalize all whitespace in manpurposeDan Allen
2018-09-29resolves #2890 consolidate inner whitespace in prose in manpage outputDan Allen
2018-09-26resolves #2880 fix crash when attribute entry continuation is used on last ↵Ariel Zelivansky
line of file - don't attempt to invoke a method on a nil object when peek_line is called on last line of file - add test to very attribute entry continuation can be used on last line of file
2018-09-25merge PR #2886Dan Allen
* change autonumbered callout from <0> to <.> * require callout list items to have leading <
2018-09-25resolves #2878 show friendly error if CSV data for table contains unclosed ↵Ariel Zelivansky
quote (PR #2879) * prevent NoMethodError crash from a strip call on nil, caused by an unclosed quoted field * leave cell data empty * show a friendly error message * add a test
2018-09-25require marker for items in callout list to have circumfix bracketsDan Allen
2018-09-25resolves #2871 (reprise) change autonumbered callout from <0> to <.>Dan Allen
2018-09-23cache custom callout rx using default hash procDan Allen
2018-09-22resolves #2871 autonumber <0> callouts in verbatim blocks and callout lists ↵Dan Allen
(PR #2885)
2018-09-21resolves #2872 correct list parsing (PR #2877)Dan Allen
- don't set or check level on list block (default to section level) - don't check for ancestor list item (already handled by parse_list_item) - defer resolve_list_marker to parse_list_item - always pass marker as sibling_trait to parse_list_item - make sibling_trait required argument to parse_list_item - look up rx for list lazily - update API doc for parse_list_item
2018-09-19rename number property to numeral (PR #2873)Dan Allen
- rename number property on AbstractBlock to numeral - alias deprecated number property to numeral - rename instance variable next_section_number to next_section_ordinal - add tests
2018-09-18resolves #2869 preserve UNC path with backslashes on WindowsDan Allen
- convert system path \\server\docs to //server/docs on Windows - clarify that PathResolver#root? does not require path to be posixified
2018-09-18assert that File.dirname preserves UNC path root on WindowsDan Allen
2018-09-18add test to verify UNC path is preserved by PathResolver#system_pathDan Allen
2018-09-16eagerly assign style to ordered list when parsing list items (PR #2870)Dan Allen
* eagerly assign style to ordered list when parsing list items * update resolve_ordered_list_marker to return implicit list style * add test that explicit list style can be set on olist when using markers w/ implicit style
2018-09-16add test for how default style is determined for olistDan Allen
2018-09-12resolves #2839 substitute attributes in target of custom block macro (PR #2866)Dan Allen
- substitute attributes in target of custom block macro - drop custom block macro if target references missing attribute and attribute-missing is drop-line
2018-09-12resolves #2810 allow manname and manpurpose to be specified using attributes ↵Dan Allen
(PR #2867) - don't look for NAME section if manname and manpurpose document attributes are defined - skip comments before name section - consume and pass on block metadata lines in front of NAME section - only consume level-1 section when looking for NAME section - fix references to magic regex variables in parser
2018-09-11resolves #2848 introduce DSL method to mark document processor as preferred ↵Dan Allen
(PR #2849) - define DSL for document processor (DocumentProcessorDsl) - add prefer method to DocumentProcessorDsl to prepend (i.e., unshift) extension onto registry - add prefer method to registry to register preferred extension