UNPKG
meblog
Version:
latest (2.2.3)
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
A simple blog engine for personal blogging
github.com/sinzii/meblog
sinzii/meblog
meblog
/
lib
/
core
/
post
/
MarkdownPostParser.d.ts
9 lines
(8 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
PostParser
from
'./PostParser'
;
import
{
Post
}
from
'./Post'
;
export
default
class
MarkdownPostParser
extends
PostParser
{
private
readonly
mdRenderer;
constructor
(
);
parse
(
filePath
:
string
,
separator
?:
string
):
Post
;
extractSlug
(
filePath
:
string
):
string
; }