|
|
|
|
|
by derekzhouzhen
1120 days ago
|
|
Your 10k items are probably only 2MB. Spending 5s to parse a 2MB text file is very slow, even for Perl. If you are distributing your file to users, that's 5s for each one of them. If you convert it to html and distribute the html file, your user will spend 1s in parsing, tops. This is exactly why I said Markdown makes a very bad interchange format. |
|
But I agree MD isn't a good interchange format.