Skip to content

Commit

Permalink
bring back initial default sigature for parse_fenced_block, closes #1037
Browse files Browse the repository at this point in the history
  • Loading branch information
tlienart committed Jul 11, 2023
1 parent 89b2b60 commit 1a2c66d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Franklin"
uuid = "713c75ef-9fc9-4b05-94a9-213340da978e"
authors = ["Thibaut Lienart <[email protected]>"]
version = "0.10.87"
version = "0.10.88"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
2 changes: 1 addition & 1 deletion src/eval/codeblock.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ $SIGNATURES
Take a fenced code block and return a tuple with the language, the relative
path (if any) and the code.
"""
function parse_fenced_block(ss::SubString; shortcut=false,
function parse_fenced_block(ss::SubString, scut=false; shortcut=scut, # scut for legacy #1037
repl=false, shell=false, pkg=false, help=false)::Tuple

if any((shortcut, repl, shell, pkg, help))
Expand Down

2 comments on commit 1a2c66d

@tlienart
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/87290

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.88 -m "<description of version>" 1a2c66da77625fb6721116d1ffd910b9435913df
git push origin v0.10.88

Please sign in to comment.