Files
Nim/tests/nimdoc
ringabout cecaf9c56b fixes #22939; fixes #16890; push should but doesn't apply to importc … (#22944)
…var/let symbols


fixes #22939
fixes #16890

Besides, it was applied to let/const/var with pragmas, now it is
universally applied.

```nim
{.push exportc.}
proc foo =
  let bar = 12
  echo bar
{.pop.}
```

For example, the `bar` variable will be affected by `exportc`.
2023-11-19 17:53:25 +01:00
..
2020-05-17 13:28:18 +02:00
2020-11-12 09:31:35 +01:00

  • $nim/nimdoc/tester.nim: tests html validation
  • $nim/tests/nimdoc/: tests runnableExamples + nim doc logic