-
Notifications
You must be signed in to change notification settings - Fork 189
Open
Labels
Description
Describe the bug
i' convert html to md,but the codes in table with line nos convert error,
HTML Input
<table><tbody><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br></pre></td><td class="code"><pre><span class="line">BOOL AddPrinterDriverEx(</span><br><span class="line"> _In_ LPTSTR pName,</span><br><span class="line"> _In_ DWORD Level,</span><br><span class="line"> _Inout_ LPBYTE pDriverInfo,</span><br><span class="line"> _In_ DWORD dwFileCopyFlags</span><br><span class="line">);</span><br></pre></td></tr></tbody></table>Generated Markdown
1
2
3
4
5
6
BOOL AddPrinterDriverEx(
_In_ LPTSTR pName,
_In_ DWORD Level,
_Inout_ LPBYTE pDriverInfo,
_In_ DWORD dwFileCopyFlags
);Expected Markdown
without line nos
BOOL AddPrinterDriverEx(
_In_ LPTSTR pName,
_In_ DWORD Level,
_Inout_ LPBYTE pDriverInfo,
_In_ DWORD dwFileCopyFlags
);
or suitable line nos
1 BOOL AddPrinterDriverEx(
2 _In_ LPTSTR pName,
3 _In_ DWORD Level,
4 _Inout_ LPBYTE pDriverInfo,
5 _In_ DWORD dwFileCopyFlags
6 );What plugins did you use?
base
Reactions are currently unavailable