summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2022-01-14be consistent about how options are set internallyDan Allen
2022-01-12resolves #3220 alias Inline#content to Inline#text so Inline node quacks ↵Dan Allen
like other nodes (PR #3247)
2022-01-08document that extension can promote paragraph to compound block and add testDan Allen
2022-01-08remove outdated commentDan Allen
2022-01-03document that the parser parses the lines of a compound block returned by ↵Dan Allen
the process method of a block or block macro extension
2022-01-03use keep_if instead of select when subject is dynamicDan Allen
2022-01-03resolves #4230 don't warn if a negated tag is not found in include file (PR ↵Dan Allen
#4233)
2022-01-02Hide autoload converter/template from Opal (PR #4205)Guillaume Grossetie
2022-01-02change "show the backtrace" to "show backtrace" in CLI hintDan Allen
2022-01-01handle return value of process method for block and block macro extension ↵Dan Allen
properly * don't crash if value is an abstract block with context :compound that isn't of type Block (e.g., a list) * ignore value if it matches parent argument
2021-12-28drop outdated patch for open-uri-cached (PR #4229)Dan Allen
2021-12-27resolves #4227 fix open-uri-cached integration on Ruby 3.1 (PR #4228)Dan Allen
2021-12-24change "for backtrack" to "to show the backtrace"Dan Allen
2021-12-23Fix typos and misspellings in docs and code (PR #4222)Kian Meng, Ang
2021-11-18resolves #4206 process author or authors document attribute in document ↵Dan Allen
header when implicit doctitle is absent (PR #4208)
2021-11-13use dup instead of super({}) in monkeypatch for Hash#mergeDan Allen
2021-11-13add flag to suppress retrieving metadata from parse_header_metadata; include ↵Dan Allen
metadata from author overrides
2021-11-13use separate variable for implicit author metadata to make code more clearDan Allen
2021-11-12simplify processing of author metadataDan Allen
- return value of process_authors is never empty - remove authorcount before processing attribute values; remove type check on value
2021-11-12verify authors attribute is only parsed if different from computed value of ↵Dan Allen
implicit authors
2021-11-10resolves #3656 add support for link=self to image macros (PR #4200)Dan Allen
2021-11-10add tests for rotate and flip attributes on font-based icon macro; make ↵Dan Allen
attributes mutually exclusive
2021-11-10rewrite convert handler for inline image to make it more clear and efficientDan Allen
- isolate logic for converting icon - simplify how attributes are assembled - untangle logic
2021-11-10simplify logic branches for converting different image types and modesDan Allen
2021-11-09use numeric character reference for closing square bracket around alt text ↵Dan Allen
of icon
2021-11-08drop unnecessary brackets in converterDan Allen
2021-11-01clarify relationship between -v and --log-level CLI options in help textDan Allen
2021-11-01resolves #3868 add --log-level option to CLI to control log level (PR #4198)Dan Allen
2021-10-30allow --failure-level option to be set to default value, FATAL, and update ↵Dan Allen
description in help
2021-10-29update the apidoc for the Document#write method [skip ci]Dan Allen
- document the parameters of Document#write - document that Document#write ensures the output has a trailing newline when the target responds to write - add a note docs that explains when the processor ensures the output has a trailing newline
2021-10-28resolves #4101 add support for role on thematic break to HTML converter (PR ↵Dan Allen
#4196)
2021-10-22resolve #4192 honor :header_only option when parsing document with manpage ↵Dan Allen
doctype (PR #4193)
2021-10-16resolves #4182 support dropping principal text of list item or description ↵Dan Allen
text of dlist item if empty when converting to man page (PR #4183)
2021-10-10resolves #4147 disallow the use of dot in the name of a named element ↵Dan Allen
attribute (PR #4148)
2021-10-07resolves #4151 don't promote level-0 special section at start of document to ↵Dan Allen
document title (PR #4152)
2021-10-04resolves #4160 use width attribute to set width of table and table column ↵Dan Allen
(PR #4161)
2021-10-01resolves #4176 allow hash to be specified for Vimeo video either in video ID ↵Dan Allen
or using hash attribute (PR #4179)
2021-09-09resolves #4051 use CSS class instead of inline style to apply page break ↵Dan Allen
behavior (PR #4159)
2021-09-09resolves #4156 include primary video in value of playlist attribute when ↵Dan Allen
embedding YouTube video (PR #4157)
2021-09-08simplify logic in HTML converter for constructing style attribute for tableDan Allen
2021-09-02resolves #4139 allow section ID to be unset using empty id attribute (PR #4150)Dan Allen
2021-08-30change AbstractBlock#sections? to return false when called on block that ↵Guillaume Grossetie
isn't a Section or Document (PR #3591)
2021-08-28resolves #3569 add sourcemap option to the CLI (PR #3568)hackingotter
2021-08-28store reproducible flag in local variable in HTML converterDan Allen
2021-08-28resolves #4143 omit generator meta tag in HTML output if reproducible ↵Ryan A. Pavlik
document attribute is set (PR #4144)
2021-08-17resolves #4130 layout source with table-based linenums as table rows when ↵Dan Allen
using rouge as source highlighter (PR #4133)
2021-08-12resolves #3641 add support for inline linenums mode when using Rouge as ↵Dan Allen
source highlighter (PR #4129)
2021-08-09use with_index to simplify stream method in RougeExt::HTMLLineHighlighterDan Allen
2021-08-08normalize output from Pygments to use linenos class for inline line ↵Dan Allen
numbering and trim space after number
2021-08-08remove unnamespaced selectors in Pygments stylesheetDan Allen