| Age | Commit message (Collapse) | Author |
|
|
|
URL protocol (PR #4585)
|
|
|
|
with /
|
|
syntax (PR #4553)
|
|
empty
|
|
resolved reftext is empty
|
|
explicit match
|
|
|
|
for # in xref target (PR #4394)
|
|
(included fully) in includes table of document catalog
|
|
|
|
|
|
|
|
definitions [skip ci]
|
|
|
|
assertions
|
|
|
|
|
|
|
|
one if necessary (PR #4041)
|
|
#4040)
|
|
|
|
inter-document xref that resolves to current document (PR #4038)
|
|
|
|
shorthand can be escaped using backslash
|
|
|
|
|
|
(PR #3717)
|
|
(PR #3712)
|
|
|
|
|
|
|
|
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
|
|
target with no extension (PR #3236)
|
|
- use the info level to keep track of decisions that affect content, but under normal circumstances can likely be ignored
|
|
* still honor header_footer option as fallback for backwards compatibility
|
|
- use capture to avoid running subsequent regular expression (UriTerminatorRx)
- only check if target ends with :// if target was modified
- update assertions to check that terminating character(s) got moved outside URL
|
|
|
|
* remove the logic that registers entries in :ids table of the document catalog
* don't attempt to compute the reftext when registering an xref (as this information is available from the referenced node and can be retrieved on demnd)
* add a Document#resolve_id method to look up ID by reference text (reftext or title); cache the result of lookups once parsing is complete
* always look for existing IDs using :refs table (when checking for a duplicate or whether a target exists)
* leave the :ids table empty to avoid breaking existing programs and extensions
* update tests
* add test to verify :ids table is always empty
|
|
reference (PR #3022)
- always assume the target of a shorthand interdocument xref is a reference to an AsciiDoc document (source-to-source)
- if the target of a formal xref macro has a file extension, assume it's a path reference
- never assume the target of a formal xref macro is a path reference unless a file extension or fragment is present
- update tests
|
|
|
|
comment to source files (PR #3055)
- replace gsub! and sub! with gsub and sub, respectively
- add `frozen_string_literal: true` magic comment to all Ruby source files
- see https://www.mikeperham.com/2018/02/28/ruby-optimization-with-one-magic-comment/
|
|
- use -v to set logger level to debug
- use -w to enable pedantic Ruby warnings (aka $VERBOSE = true)
|
|
- remove the DocBook45Converter class
- remove accomodations in DocBook5Converter for DocBook 4.5
- don't register the docbook45 backend name in the converter registry
- drop docbook45 from the backend CLI option values
- don't mention DocBook 4.5 in the man page
- don't mention DocBook 4.5 in the CLI usage statement
- update tests to use DocBook 5 instead of DocBook 4.5
|
|
|
|
unrecognized extension
|
|
- switch to modern hash syntax (from :key => value to key: value)
- put space inside hash brackets (from {key: value} to { key: value }
- use dangling comma on last entry of multi-line hash
|
|
- use require_relative in place of require when it relied on $LOAD_PATH manipulation
- configure bin scripts to work with require_relative
- rename ROOT_PATH to ROOT_DIR
- rename DATA_PATH to DATA_DIR
- rename STYLESHEETS_DATA_PATH to STYLESHEETS_DIR
- define LIB_DIR
- simplify test helper require and setup
- add bindir helper to test suite
- remove unneeded constants in test helper
- reorder autoload statements
- require version directly instead of autoloading
|
|
- remove constants for differentiating between Ruby versions
- remove fallback assignment for RUBY_ENGINE constant
- remove rubygems require
- use unicode character properties in regular expressions (e.g., \p{Word})
- remove COERCE_ENCODING constant
- always set FORCE_ENCODING constant to true unless default external encoding is not UTF-8
- remove workaround for computing line length
- use lines method instead of lines.entries to get lines for string
- always normalize lines
- check if JRuby class is defined instead of checking for JRuby engine
- remove global RUBY_ENGINE_JRUBY constant
- move RUBY_ENGINE_OPAL constant inside Asciidoctor module
- remove magic encoding comments (since default script encoding is UTF-8)
- remove workaround when printing encoding information
- remove fallback assignments for passthrough escape characters
- remove Ruby core backports (only leave Asciidoctor-specific extensions)
- use __dir__ instead of File.dirname __FILE__
- use Float#truncate to truncate column widths
- override Float#truncate on Ruby 2.3 to implement precision argument
- remove concurrent/hash backport
- simplify class_for_name helper
- don't call to_sym on constants returned from constants method
- remove unnecessary aliasing of regexp match variables; use magic variable instead (e.g., m = $~)
- remove workaround for sub_specialchars to accomodate gsub with map argument
- remove comment about %:z placeholder for strftime
- don't call .to_a on return value of Hash#keys
- get home directory using Dir.home
- remove exceptions and exclusions for Ruby < 2 in test suite
- update list of supported Ruby engines and versions in READMEs
- update ruby versions in run-tests.sh
|