Last post Feb 21, 2021 04:44 PM by oned_gk
Member
35 Points
156 Posts
Feb 19, 2021 05:49 AM|binustrat|LINK
I am parsing markdown files using below url code
https://docs.microsoft.com/en-us/windows/communitytoolkit/parsers/markdownparser
Here my requirement is how we get line number of particular word or heading?
All-Star
52673 Points
15720 Posts
Feb 21, 2021 10:42 AM|oned_gk|LINK
Not sure, never use it. I guess you can do
Dim I=0, then inside iteration i+=1
Feb 21, 2021 11:59 AM|binustrat|LINK
Hi oned_gk,
It will consider blank rows? I want to consider blank rows also
Feb 21, 2021 04:44 PM|oned_gk|LINK
There are markdownblock and markdowninline elemen
https://docs.microsoft.com/en-us/dotnet/api/microsoft.toolkit.parsers.markdown.markdownelement?view=win-comm-toolkit-dotnet-stable
'in this case, you can iterate inlines instead
Member
35 Points
156 Posts
Get line number from markdown language
Feb 19, 2021 05:49 AM|binustrat|LINK
I am parsing markdown files using below url code
https://docs.microsoft.com/en-us/windows/communitytoolkit/parsers/markdownparser
Here my requirement is how we get line number of particular word or heading?
All-Star
52673 Points
15720 Posts
Re: Get line number from markdown language
Feb 21, 2021 10:42 AM|oned_gk|LINK
Not sure, never use it. I guess you can do
Dim I=0, then inside iteration i+=1
Suwandi - Non Graduate Programmer
Member
35 Points
156 Posts
Re: Get line number from markdown language
Feb 21, 2021 11:59 AM|binustrat|LINK
Hi oned_gk,
It will consider blank rows? I want to consider blank rows also
All-Star
52673 Points
15720 Posts
Re: Get line number from markdown language
Feb 21, 2021 04:44 PM|oned_gk|LINK
There are markdownblock and markdowninline elemen
https://docs.microsoft.com/en-us/dotnet/api/microsoft.toolkit.parsers.markdown.markdownelement?view=win-comm-toolkit-dotnet-stable
'in this case, you can iterate inlines instead
Suwandi - Non Graduate Programmer