Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Asciidoctor: Copy referenced images #541

Merged
merged 5 commits into from
Jan 30, 2019

Commits on Jan 16, 2019

  1. Asciidoctor: Copy referenced images

    Mimicks `a2x`'s behavior with regards to images, copying them into the
    destionation repository. `a2x` parses the generated html files but we
    don't want to use their parser because we'd like to make a clean break
    from `a2x`. We can't use any of perl's wonderful parsers because we
    don't want to add any additional dependencies to the project. Instead,
    we use the AST of the parsed asciidoc files and look for images. This
    isn't *quite* the same thing because it'll miss any images that we add
    using as part of the xsl transformation but we can handle those
    explictly in the perl code if there are any. In addition to not
    requiring any more dependencies it has the advantage of build "built in"
    to the asciidoctor work so we don't need to work on it later if we
    change the perl orchestration stuff. Finally, it is pretty quick because
    we don't have to parse all of the generated html - we can just use the
    already parsed asciidoctor!
    nik9000 committed Jan 16, 2019
    Configuration menu
    Copy the full SHA
    2c4ba9f View commit details
    Browse the repository at this point in the history
  2. Drop .

    nik9000 committed Jan 16, 2019
    Configuration menu
    Copy the full SHA
    210353c View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2019

  1. Configuration menu
    Copy the full SHA
    e898f8f View commit details
    Browse the repository at this point in the history
  2. Switch error checking

    nik9000 committed Jan 29, 2019
    Configuration menu
    Copy the full SHA
    afadc6d View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2019

  1. Make easier to read

    nik9000 committed Jan 30, 2019
    Configuration menu
    Copy the full SHA
    f4fd033 View commit details
    Browse the repository at this point in the history