• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A Markdown shard for the Crystal programming language


RSS
Rev. Tiempo Autor
e90bbdf master 2023-12-28 13:08:25 supercell

Remove unused spec/util.cr file

f00309f 2023-12-28 12:19:51 supercell

Add support for AlertBlockSyntaxes

9dc34d2 2023-12-28 10:56:46 supercell

Update CHANGELOG

7e2c36a 2023-12-28 10:54:19 supercell

Merge branch 'solvin-master'

626ded0 2023-12-25 20:45:43 Ian Rash

Added attributes with no value

d73c648 2023-12-25 16:23:14 supercell

Fix Regex match error (match limit exceeded)

... another breaking change in Crystal 1.8 ...

See Also: 3f03ca7d21ec0e0c593b58cae6059a85da82a209
Closes: https://codeberg.org/supercell/luce/issues/5

4a8dea4 2023-12-07 13:56:58 supercell

Update CHANGELOG

6ac4176 2023-12-07 13:48:42 supercell

Add spec for AutolinkExtension unmatched par.

See: https://codeberg.org/supercell/luce/issues/3

d548a69 2023-12-07 13:36:33 Mio

Merge pull request 'Fixed issues with paren and autolink' (#3) from solvin/luce:master into master

Reviewed-on: https://codeberg.org/supercell/luce/pulls/3

326b874 2023-12-07 12:40:09 solvin

Update src/extern/dart_uri.cr

71d4b46 2023-12-07 12:39:31 solvin

Update src/luce/inline_syntaxes/autolink_extension_syntax.cr

b78946c 2023-11-26 09:53:57 supercell

Fix start of line detection in AutolinkExtension

896e7a1 2023-10-26 12:18:37 supercell

Small style changes and documentation fixes

6fff0a0 2023-10-26 11:50:06 supercell

Update CommonMark spec links to v0.30

911cb67 2023-10-26 11:21:46 supercell

Fix HTMLBlockSyntax

76ab365 2023-09-24 08:00:25 supercell

Fix misc. ameba warnings

1c5be09 2023-09-23 09:22:49 supercell

Table should be able to interrupt other blocks

c0a6036 2023-09-23 09:13:46 supercell

Fix delimiter row matching pattern for tables

dea5bad 2023-09-22 19:27:24 supercell

Raise if BlockSyntax#parse_lines loops infinitely

We raise an exception if `BlockSyntax#parse_lines` enters an infinite
loop. This should have no effect, if there are no bugs. However, if
there is a bug, it's easier to discover it in production if the failure
isn't an infinite loop eating up the CPU, but just an unhandled
exception.

18eeed4 2023-09-22 19:02:32 supercell

Fix `link_reference_definition_pattern`

The test case would cause an infinite loop prior to this commit.

e1aa342 2023-08-17 11:36:11 supercell

Footnote support

4fc783d v0.4.0 2023-05-23 09:13:56 supercell

Version 0.4.0

4208a0d 2023-05-21 19:23:06 supercell

Don't generate heading ID when there is no content

0ad280f 2023-05-21 19:13:50 supercell

Remove lookarounds from autolink extension

3f03ca7 2023-05-21 12:48:03 supercell

Update regular expressions for Crystal 1.8.0

Crystal @ 1.0: "Language and standard library features won't be removed
or changed in any way that could prevent existing code
from compiling and working."

Crystal @ 1.8: We're changing to PCRE2 "which can cause breaking
changes".

Whilst the changes here are minimal (and the changes still work in
previous versions of Crystal) this should have been a 2.0 change. There
was no way for certain to know if this would break anything since there
are no (official) documented differences between the two engines.

Say there is a shard which was developed for Crystal 1.0 but hasn't seen
an update since. Given what they said at the 1.0 release, this shard
should still compile and work as a dependency of a project using Crystal
1.8 no matter what. </rant>

5a406b2 2023-05-21 12:00:14 supercell

Add trailing line ending to HTML blocks

Closes #1 (HTML blocks not passing at 100%)

0ff03cc 2023-05-21 11:54:11 supercell

Prepend a line ending when converting p elements

In a *tight* list, the top-level p elements are converted in to text
elements.

c6bfa2a 2023-05-21 11:24:51 supercell

Add line endings before HTML blocks

This assists with issue #1 (HTML Blocks not passing at 100%)

5257825 2023-05-21 11:16:08 supercell

Ameba lint

I don't run this often enough. Since none of the public methods were
present in v0.3.0, I'm not marking them with Deprecated.

1fbaf64 2023-05-21 11:02:04 supercell

Rewrite link reference definitions