diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-10-11 00:56:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-10 18:56:01 +0200 |
commit | e290b028aba9fd50a69ed8c0346ee323f9287a13 (patch) | |
tree | 5803e324eb15d6f74cd5a21b593983e2002cdaa8 /lib | |
parent | 1f2075042b7feb06cffe6c4ae6562a2e38144f81 (diff) | |
download | Nim-e290b028aba9fd50a69ed8c0346ee323f9287a13.tar.gz |
Make rstgen work with gcsafe (#20534)
* Make rstgen work with gcsafe Co-authored-by: Danil Yarantsev <tiberiumk12@gmail.com> * add tests and fixes * if nimHasWarningAsError Co-authored-by: Danil Yarantsev <tiberiumk12@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/packages/docutils/rstgen.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/packages/docutils/rstgen.nim b/lib/packages/docutils/rstgen.nim index d1f2a7511..bd1137789 100644 --- a/lib/packages/docutils/rstgen.nim +++ b/lib/packages/docutils/rstgen.nim @@ -88,7 +88,7 @@ type ## for hyperlinks. See renderIndexTerm proc for details. id*: int ## A counter useful for generating IDs. onTestSnippet*: proc (d: var RstGenerator; filename, cmd: string; status: int; - content: string) + content: string) {.gcsafe.} escMode*: EscapeMode curQuotationDepth: int @@ -283,7 +283,7 @@ proc dispA(target: OutputTarget, dest: var string, proc `or`(x, y: string): string {.inline.} = result = if x.len == 0: y else: x -proc renderRstToOut*(d: var RstGenerator, n: PRstNode, result: var string) +proc renderRstToOut*(d: var RstGenerator, n: PRstNode, result: var string) {.gcsafe.} ## Writes into ``result`` the rst ast ``n`` using the ``d`` configuration. ## ## Before using this proc you need to initialise a ``RstGenerator`` with @@ -1028,7 +1028,7 @@ proc renderCodeLang*(result: var string, lang: SourceLanguage, code: string, proc renderNimCode*(result: var string, code: string, target: OutputTarget) = renderCodeLang(result, langNim, code, target) -proc renderCode(d: PDoc, n: PRstNode, result: var string) = +proc renderCode(d: PDoc, n: PRstNode, result: var string) {.gcsafe.} = ## Renders a code (code block or inline code), appending it to `result`. ## ## If the code block uses the ``number-lines`` option, a table will be @@ -1592,7 +1592,7 @@ $content proc rstToHtml*(s: string, options: RstParseOptions, config: StringTableRef, - msgHandler: MsgHandler = rst.defaultMsgHandler): string = + msgHandler: MsgHandler = rst.defaultMsgHandler): string {.gcsafe.} = ## Converts an input rst string into embeddable HTML. ## ## This convenience proc parses any input string using rst markup (it doesn't |