mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-18 05:25:48 +00:00
Updated Arbitrary instance for link attribute
This commit is contained in:
@@ -56,10 +56,11 @@ arbInline n = frequency $ [ (60, liftM Str realString)
|
||||
, (10, do x1 <- arbitrary
|
||||
x2 <- realString
|
||||
return $ Math x1 x2)
|
||||
, (10, do x1 <- arbInlines (n-1)
|
||||
, (10, do x0 <- arbAttr
|
||||
x1 <- arbInlines (n-1)
|
||||
x3 <- realString
|
||||
x2 <- liftM escapeURI realString
|
||||
return $ Link x1 (x2,x3))
|
||||
return $ Link x0 x1 (x2,x3))
|
||||
, (10, do x0 <- arbAttr
|
||||
x1 <- arbInlines (n-1)
|
||||
x3 <- realString
|
||||
|
||||
Reference in New Issue
Block a user