Compare commits
2 commits
82e1c76fe7
...
7ae868932d
| Author | SHA1 | Date | |
|---|---|---|---|
| 7ae868932d | |||
| 8887476626 |
3 changed files with 320 additions and 313 deletions
35
src/Lexer.hs
35
src/Lexer.hs
|
|
@ -31,7 +31,7 @@ data Level
|
||||||
|
|
||||||
data Token
|
data Token
|
||||||
= Token Text
|
= Token Text
|
||||||
| Anchor
|
| Anchor Text
|
||||||
| BirdTrack
|
| BirdTrack
|
||||||
| BoldOpen
|
| BoldOpen
|
||||||
| BoldClose
|
| BoldClose
|
||||||
|
|
@ -54,6 +54,7 @@ data Token
|
||||||
| MathsParenClose
|
| MathsParenClose
|
||||||
| MathsBracketOpen
|
| MathsBracketOpen
|
||||||
| MathsBracketClose
|
| MathsBracketClose
|
||||||
|
| NumericEntity Int
|
||||||
| Module
|
| Module
|
||||||
| QuoteOpen
|
| QuoteOpen
|
||||||
| QuoteClose
|
| QuoteClose
|
||||||
|
|
@ -167,37 +168,33 @@ anchors :: Lexer
|
||||||
anchors = do
|
anchors = do
|
||||||
pos <- getPosition
|
pos <- getPosition
|
||||||
void $ try anchor'
|
void $ try anchor'
|
||||||
pos' <- getPosition
|
|
||||||
txt <- anyUntil anchor'
|
txt <- anyUntil anchor'
|
||||||
pos'' <- getPosition
|
|
||||||
void $ try anchor'
|
void $ try anchor'
|
||||||
|
|
||||||
pure
|
pure [(pos, Anchor txt)]
|
||||||
[ (pos, Anchor)
|
|
||||||
, (pos', Token txt)
|
|
||||||
, (pos'', Anchor)
|
|
||||||
]
|
|
||||||
where
|
where
|
||||||
anchor' = (string "#" <|> string "\\#")
|
anchor' = (string "#" <|> string "\\#")
|
||||||
|
|
||||||
|
located :: Parser a -> Parser (SourcePos, a)
|
||||||
|
located p = (,) <$> getPosition <*> p
|
||||||
|
|
||||||
|
startPosition :: Parser a -> Parser SourcePos
|
||||||
|
startPosition = fmap fst . located
|
||||||
|
|
||||||
-- "Module.Name"
|
-- "Module.Name"
|
||||||
-- "Module.Name#anchor"
|
-- "Module.Name#anchor"
|
||||||
-- "Module.Name#anchor"
|
-- "Module.Name\#anchor" -- this has been deprecated for 9 years, thanks Ben
|
||||||
modules :: Lexer
|
modules :: Lexer
|
||||||
modules = do
|
modules = do
|
||||||
pos <- getPosition
|
startPos <- startPosition $ char '"'
|
||||||
void $ char '"'
|
(modPos, modName) <- located modId
|
||||||
pos' <- getPosition
|
|
||||||
modName <- modId
|
|
||||||
anch <- option [] do
|
anch <- option [] do
|
||||||
pos'' <- getPosition
|
anchPos <- startPosition (string "#" <|> string' "\\#")
|
||||||
void $ try (string "#" <|> string "\\#")
|
txt <- Text.pack <$> many (satisfy (\c -> c /= '"' && not (isSpace c)))
|
||||||
pos''' <- getPosition
|
pure [(anchPos, Anchor txt)]
|
||||||
a <- Text.pack <$> many (satisfy (\c -> c /= '"' && not (isSpace c)))
|
|
||||||
pure [(pos'', Anchor), (pos''', Token a)]
|
|
||||||
|
|
||||||
void $ char '"'
|
void $ char '"'
|
||||||
pure $ [(pos, Module), (pos', Token modName)] <> anch
|
pure $ [(startPos, Module), (modPos, Token modName)] <> anch
|
||||||
where
|
where
|
||||||
modId = intercalate "." <$> (fmap Text.pack <$> (conId `sepBy1` (char '.')))
|
modId = intercalate "." <$> (fmap Text.pack <$> (conId `sepBy1` (char '.')))
|
||||||
|
|
||||||
|
|
|
||||||
12
test/Spec.hs
12
test/Spec.hs
|
|
@ -51,10 +51,14 @@ modules = do
|
||||||
"\"OtherModule.Name#myAnchor\""
|
"\"OtherModule.Name#myAnchor\""
|
||||||
`shouldLexTo` [ (1, 1, Module)
|
`shouldLexTo` [ (1, 1, Module)
|
||||||
, (1, 2, Token "OtherModule.Name")
|
, (1, 2, Token "OtherModule.Name")
|
||||||
, (1, 18, Anchor)
|
, (1, 18, Anchor "myAnchor")
|
||||||
, (1, 19, Token "myAnchor")
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
"\"OtherModule.Name\\#myAnchor\""
|
||||||
|
`shouldLexTo` [ (1, 1, Module)
|
||||||
|
, (1, 2, Token "OtherModule.Name")
|
||||||
|
, (1, 18, Anchor "myAnchor")
|
||||||
|
]
|
||||||
link :: Expectation
|
link :: Expectation
|
||||||
link =
|
link =
|
||||||
"[link to](http://some.website)"
|
"[link to](http://some.website)"
|
||||||
|
|
@ -85,9 +89,7 @@ labeledLink =
|
||||||
anchors :: Expectation
|
anchors :: Expectation
|
||||||
anchors =
|
anchors =
|
||||||
"#myAnchor#"
|
"#myAnchor#"
|
||||||
`shouldLexTo` [ (1, 1, Anchor)
|
`shouldLexTo` [ (1, 1, Anchor "myAnchor")
|
||||||
, (1, 2, Token "myAnchor")
|
|
||||||
, (1, 10, Anchor)
|
|
||||||
]
|
]
|
||||||
|
|
||||||
maths :: IO ()
|
maths :: IO ()
|
||||||
|
|
|
||||||
|
|
@ -27,8 +27,16 @@ ftp\://example.com
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
\(mathematical expression\)
|
\(mathematical 1+3 expression\)
|
||||||
\[mathematical expression\]
|
|
||||||
|
\[mathematical
|
||||||
|
expression
|
||||||
|
accross lines with + addition and such
|
||||||
|
\]
|
||||||
|
|
||||||
|
{
|
||||||
|
e
|
||||||
|
¥
|
||||||
|
|
||||||
@
|
@
|
||||||
code block content
|
code block content
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue