Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace more non-codeblocks with outputblocks #7146

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source/iostreams.tex
Original file line number Diff line number Diff line change
Expand Up @@ -17358,16 +17358,16 @@
\pnum
\begin{example}
Given this directory structure:
\begin{codeblock}
\begin{outputblock}
/dir1
file1
file2
dir2
file3
\end{codeblock}
\end{outputblock}

Calling \tcode{copy("/dir1", "/dir3")} would result in:
\begin{codeblock}
\begin{outputblock}
/dir1
file1
file2
Expand All @@ -17376,10 +17376,10 @@
/dir3
file1
file2
\end{codeblock}
\end{outputblock}

Alternatively, calling \tcode{copy("/dir1", "/dir3", copy_options::recursive)} would result in:
\begin{codeblock}
\begin{outputblock}
/dir1
file1
file2
Expand All @@ -17390,7 +17390,7 @@
file2
dir2
file3
\end{codeblock}
\end{outputblock}
\end{example}
\end{itemdescr}

Expand Down
8 changes: 4 additions & 4 deletions source/uax31.tex
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
\UAX{31} specifies a default syntax for identifiers
based on properties from the Unicode Character Database, \UAX{44}.
The general syntax is
\begin{codeblock}
\begin{outputblock}
<Identifier> := <Start> <Continue>* (<Medial> <Continue>+)*
\end{codeblock}
\end{outputblock}
where \tcode{<Start>} has the XID_Start property,
\tcode{<Continue>} has the XID_Continue property, and
\tcode{<Medial>} is a list of characters permitted between continue characters.
Expand All @@ -34,11 +34,11 @@
the \tcode{<Medial>} set is empty, and
the \tcode{<Continue>} characters are unmodified.
In the grammar used in \UAX{31}, this is
\begin{codeblock}
\begin{outputblock}
<Identifier> := <Start> <Continue>*
<Start> := XID_Start + @\textrm{\ucode{005f}}@
<Continue> := <Start> + XID_Continue
\end{codeblock}
\end{outputblock}

\pnum
This is described in the \Cpp{} grammar in \ref{lex.name},
Expand Down
Loading