Skip to content

Commit

Permalink
fix is:raw render of content
Browse files Browse the repository at this point in the history
  • Loading branch information
sransara committed Jul 14, 2024
1 parent 1646c46 commit 3775e25
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 20 deletions.
1 change: 1 addition & 0 deletions adocx/nodeConverters/listing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const convert: AdocNodeConverter<Block> = (node: Block, _opts?: any) => {
children: [
atag('CodeListing', {
lang,
'is:raw': true,
children: [content],
}),
],
Expand Down
1 change: 1 addition & 0 deletions adocx/nodeConverters/stem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const convert: AdocNodeConverter<Block> = (node: Block, _opts?: any) => {
atag('Mathtex', {
block: true,
lang: style,
'is:raw': true,
children: [content],
}),
],
Expand Down
Binary file not shown.
18 changes: 0 additions & 18 deletions src/pages/notes/2019/hello-world/_islands/Counter.jsx

This file was deleted.

4 changes: 2 additions & 2 deletions src/pages/notes/2023/bazel-python-venv/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ os.execv( <1>
=== Why it works?

It works because the bootstrapper created by the
https://cs.opensource.google/bazel/bazel/+/master:tools/python/python_bootstrap_template.txt;drc=91584dd4f189f60b67d1984aeeaf2de8496ea824[python_bootstrap_template.txt]template
sets the `PYTHONPATH` and starts our `pyshell.py` script.
https://cs.opensource.google/bazel/bazel/+/master:tools/python/python_bootstrap_template.txt;drc=91584dd4f189f60b67d1984aeeaf2de8496ea824[python_bootstrap_template.txt]
template sets the `PYTHONPATH` and starts our `pyshell.py` script.
`execv` replaces the current process with a new process, and the new process inherits the environment variables from the old process
including the `PYTHONPATH` set by the bootstrapper.

Expand Down

0 comments on commit 3775e25

Please sign in to comment.