-
This is the flip side of #3189
Friendica's code blocks gets added HTML tags breaking the whitespace structure when viewed in Diaspora. It might be something we can fix on our end the same way #3189…
-
This could be outputted to markdown using html2markdown libraries. Some content may may need to be output as pure html.
-
There's no command-line option to pass the encoding, so this works:
```
html2markdown test.html latin-1
```
But this doesn't:
```
html2markdown - latin-1
-
{"code":22001,"msg":"SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'memo' at row 1\nThe SQL being executed was: INSERT INTO `record` (`user_id`, `task_id`, `status`, `ac…
meolu updated
6 years ago
-
```
What steps will reproduce the problem?
1. Run pandoc on foo bar
What is the expected output? What do you see instead?
Expected that the HTML entity would be preserved; instead, it is…
-
```
What steps will reproduce the problem?
What is the expected output? What do you see instead?
Create an HTML document with an A tag like bar.
pandoc chooses to encode this as
[bar][1]
[1]:…
-
```
What steps will reproduce the problem?
What is the expected output? What do you see instead?
Create an HTML document with an A tag like bar.
pandoc chooses to encode this as
[bar][1]
[1]:…
-
```
What steps will reproduce the problem?
1. Run pandoc on foo bar
What is the expected output? What do you see instead?
Expected that the HTML entity would be preserved; instead, it is…
-
```
What steps will reproduce the problem?
1. echo "foo" | html2markdown
2. Observe that the result is "o:p\>foo\no:p\>"
3. Wish for the result to be "foo" and some tidy-style warnings about
unrecogn…
-
```
Rewrite hsmarkdown, markdown2pdf, and html2markdown in Haskell.
Don't use fancy libraries (to keep dependencies down), and don't link in
the pandoc library. Instead, just use system calls. Have t…