Temporal cleaning for conflict resolution.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2021-07-15 18:31:14 -05:00
parent d83ae0f878
commit fe68a9976c
1 changed files with 0 additions and 16 deletions

View File

@ -16,19 +16,3 @@ WikiText >> content [
WikiText >> content: aString [
content := aString
]
{ #category : #accessing }
WikiText >> convertMarkdownLinks [
| markdownLinks markdownLinksRegex |
markdownLinksRegex := '\[([\w|\s]+)\]\((\S+)\)'.
"For the explanation of the Regex details see: http://scottradcliff.com/how-to-parse-urls-in-markdown.html"
markdownLinks := self content regex: markdownLinksRegex matchesCollect: [:link | link ].
markdownLinks ifEmpty: [^ self content ].
markdownLinks do: [:markdownLink | | linkText closingLinkIndex newContent |
closingLinkIndex := markdownLink indexOf: $].
linkText := markdownLink copyFrom: 2 to: closingLinkIndex.
newContent := self content copyReplaceAll: markdownLink with: '[[', linkText, ']'.
self content: newContent.
].
^ self content
]