Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cpuguy83/go-md2man
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.4
Choose a base ref
...
head repository: cpuguy83/go-md2man
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.5
Choose a head ref
  • 17 commits
  • 7 files changed
  • 5 contributors

Commits on May 13, 2024

  1. Bump golangci/golangci-lint-action from 4.0.0 to 6.0.1

    Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 4.0.0 to 6.0.1.
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@v4.0.0...v6.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored May 13, 2024
    Configuration menu
    Copy the full SHA
    d885a48 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #119 from cpuguy83/dependabot/github_actions/golan…

    …gci/golangci-lint-action-6.0.1
    
    Bump golangci/golangci-lint-action from 4.0.0 to 6.0.1
    cpuguy83 authored May 13, 2024
    Configuration menu
    Copy the full SHA
    a436f58 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Bump golangci/golangci-lint-action from 6.0.1 to 6.1.0

    Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6.0.1 to 6.1.0.
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@v6.0.1...v6.1.0)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Jul 29, 2024
    Configuration menu
    Copy the full SHA
    8506aa3 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Drop firstDD state flag

    The same result can be derived directly from the AST by interrogating the
    node's siblings.
    
    Signed-off-by: Cory Snider <[email protected]>
    corhere committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    23074ec View commit details
    Browse the repository at this point in the history
  2. Drop extensions field from renderer

    It is effectively a constant.
    
    Signed-off-by: Cory Snider <[email protected]>
    corhere committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    d8e68c2 View commit details
    Browse the repository at this point in the history
  3. Add debugging output for renderer

    Documentation on the shape of the markdown AST produced by the
    blackfriday parser is rather sparse. Add a decorator for renderers which
    dumps the visited AST nodes to stderr, interleaved with the renderer
    output, to help with debugging the roff renderer.
    
    Signed-off-by: Cory Snider <[email protected]>
    corhere committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    40e51c9 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2024

  1. Suppress tag on first paragraph after header

    Paragraph tags following headers are not necessary and confuse semantic
    parsers such as lexgrog.
    
    Signed-off-by: Cory Snider <[email protected]>
    corhere committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    0f2f6eb View commit details
    Browse the repository at this point in the history
  2. Backslash-escape first hyphen in NAME section

    This is the required format for man-page parsers across the ecosystem to
    successfuly parse out whatis information.
    
    Signed-off-by: Cory Snider <[email protected]>
    corhere committed Aug 9, 2024
    Configuration menu
    Copy the full SHA
    426206c View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Configuration menu
    Copy the full SHA
    7607604 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2024

  1. Merge pull request #123 from corhere/ast-debug

    Add debugging output for renderer
    cpuguy83 authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    5e88164 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #125 from kurth4cker/master

    md2man.go: rename ioutil to io
    thaJeztah authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    4013a69 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #121 from corhere/less-renderer-state

    Reduce the amount of state the renderer needs to track
    cpuguy83 authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    4d7d268 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #124 from corhere/fix-whatis

    Emit a NAME section properly formatted for whatis parsing
    cpuguy83 authored Sep 12, 2024
    Configuration menu
    Copy the full SHA
    6350b8a View commit details
    Browse the repository at this point in the history
  5. Support multi-paragraph definition lists

    The AST hierarchy for a list item is always List > Item > Paragraph.
    Emit newlines when visiting the Paragraph node instead of the Item and
    List so that Items with multiple Paragraphs and nested Lists correctly
    render with just the right number of line breaks.
    
    Signed-off-by: Cory Snider <[email protected]>
    corhere committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    f486e72 View commit details
    Browse the repository at this point in the history
  6. Stop over-indenting lists that are not nested

    List items are already indented paragraphs. There is no need to also
    increase the relative inset unless the list is nested inside another
    list.
    
    Signed-off-by: Cory Snider <[email protected]>
    corhere committed Sep 12, 2024
    Configuration menu
    Copy the full SHA
    149c352 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2024

  1. Merge pull request #122 from corhere/fix-multi-paragraph-lists

    Fix rendering of lists
    cpuguy83 authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    54d2e5c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #120 from cpuguy83/dependabot/github_actions/golan…

    …gci/golangci-lint-action-6.1.0
    
    Bump golangci/golangci-lint-action from 6.0.1 to 6.1.0
    cpuguy83 authored Sep 16, 2024
    Configuration menu
    Copy the full SHA
    b14773d View commit details
    Browse the repository at this point in the history
Loading