summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-13Release 2.0.7v2.0.7Dan Allen
2019-04-13resolves #3254 fix crash when resolving ID from text and a candidate ↵Dan Allen
contains an unresolved xref (PR #3255) - prevent nested calls to resolve_id from populating reftexts table - only call resolve_id if fragment matches requirements (contains space or uppercase character) - add additional tests to cover scenarios
2019-04-13move source for main API entry points (load, load_file, convert, ↵Dan Allen
convert_file) to separate files (PR #3244)
2019-04-10fix compatibility with Rouge 2.0Dan Allen
- instantiate theme eagerly for inline HTML formatter instead of relying on constructor to do it - pass style as inline_theme option to HTML formatter
2019-04-10fix syntax in gemspec [skip ci]Dan Allen
2019-04-09use oxford commas in manpage [skip ci]Dan Allen
2019-04-09improve documentation for the `-a` CLI option [skip ci]Dan Allen
- reword description - explain that `@` modifier can be placed at end of name as alternative to end of value
2019-04-09assign files inside begin/rescue block in gemspec [skip ci]Dan Allen
2019-04-06remove redundant self when calling load/convert methods (PR #3245)Dan Allen
2019-04-04Begin development on next version [skip ci]Dan Allen
2019-04-04Release 2.0.6v2.0.6Dan Allen
2019-04-04replace calls to File.extname with Helpers.extname (PR #3240)Dan Allen
2019-04-04resolves #3231 assume implicit AsciiDoc extension on interdoc xref macro ↵Dan Allen
target with no extension (PR #3236)
2019-04-04resolves #3238 don't fail to load application if call to Dir.home fails (PR ↵Dan Allen
#3239)
2019-04-03check for AsciiDoc file extension using end_with? instead of resolving the ↵Dan Allen
extname and using a lookup (PR #3234)
2019-04-03Helpers.rootname should only consider final path segment when dropping file ↵Dan Allen
extension (PR #3235) - if final segment does not contain a dot, return original filename - optimize assignments in PreprocessorReader#push_include - add additional tests
2019-04-02document the popen workaround in the test suite for JRuby [skip ci]Dan Allen
2019-04-01Begin development on next version [skip ci]Dan Allen
2019-04-01Release 2.0.5v2.0.5Dan Allen
2019-04-01use IO.popen with env argument in test suite (PR #3229)Dan Allen
2019-04-01resolves #3225 mark encoding of stdio objects used in CLI as UTF-8 (PR #3228)Dan Allen
2019-04-01resolves #3226 CLI should use $stdin instead of STDIN (PR #3227)Dan Allen
2019-04-01update CLI and SyntaxHighlighter to allow Asciidoctor to load cleanly on ↵Dan Allen
Ruby 2.0 - 2.2
2019-04-01make Asciidoctor::SyntaxHighlighter::Config.register_for method public as ↵Dan Allen
documented
2019-03-31resolves #3223 should not crash when source highlighter is rouge and source ↵Dan Allen
language is not set on block (PR #3224)
2019-03-31don't require core_ext patches on Opal that aren't neededDan Allen
2019-03-31don't use squiggly heredoc in CLIDan Allen
2019-03-31Begin development on next version [skip ci]Dan Allen
2019-03-31Release 2.0.4v2.0.4Dan Allen
2019-03-31mark render and render_file methods as deprecated in API docs [skip ci]Dan Allen
2019-03-31allow Asciidoctor to load cleanly on Ruby 2.0 - 2.2 for distributions that ↵Dan Allen
provide support for these older Ruby versions
2019-03-31mark Asciidoctor.render and Asciidoctor.render_file as deprecated in API docsDan Allen
2019-03-31move Asciidoctor::Converter::BackendTraits.derive_backend_traits method to ↵Dan Allen
Asciidoctor::Converter
2019-03-31make Asciidoctor::Converter::Config.register_for method public as documentedDan Allen
2019-03-31remove unused Asciidoctor::Converter::BackendTraits#derive_backend_traits ↵Dan Allen
private method
2019-03-31update RDoc on Converter; consolidate some code [skip ci]Dan Allen
2019-03-30update intro in README [skip ci]Dan Allen
2019-03-30add link to API docs to README [skip ci]Dan Allen
2019-03-30configure README to display properly on rubydoc.info [skip ci]Dan Allen
2019-03-29use file read mode in test suiteDan Allen
2019-03-28Begin development on next version [skip ci]Dan Allen
2019-03-28Release 2.0.3v2.0.3Dan Allen
2019-03-28map caption prefix for an image block to the string key 'figure'Dan Allen
2019-03-28merge PR #3213Dan Allen
resolves #3214 update use of magic regexp variables to fix compatibility with Opal
2019-03-28resolves #3214 update use of magic regexp variables to fix compatibility ↵Guillaume Grossetie
with Opal - reference or reassign magic regexp variables (e.g., $1, $2, etc) before invoking any other regular expression or method - consolidate logic in extract_passthroughs
2019-03-27resolves #3216 fix crash when attrlist is used on literal monospace phrase ↵Dan Allen
(PR #3217)
2019-03-26Begin development on next version [skip ci]Dan Allen
2019-03-26Release 2.0.2v2.0.2Dan Allen
2019-03-26optimize heavily-used conditionalsDan Allen
2019-03-26resolves #3207 implement #lines and #source methods on Table::Cell (PR #3209)Dan Allen