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

Unescaped apostrophes at start of line #110

Closed
jwilk opened this issue Feb 3, 2024 · 2 comments · Fixed by #112
Closed

Unescaped apostrophes at start of line #110

jwilk opened this issue Feb 3, 2024 · 2 comments · Fixed by #112

Comments

@jwilk
Copy link

jwilk commented Feb 3, 2024

$ cat test.md 
'foo'
'bar'
$ go-md2man < test.md
.nh

.PP
\&'foo'
'bar'

The converter correctly inserted \& before 'foo'.
But 'bar' needs the \& treatment too.

@cpuguy83
Copy link
Owner

cpuguy83 commented Feb 5, 2024

Is this what you are looking for?

.nh

.PP
\&'foo'
\&'bar'

@cpuguy83
Copy link
Owner

cpuguy83 commented Feb 5, 2024

I think #112 should fix this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants