diff --git a/manuscript.md b/manuscript.md index 049a547..2f15a54 100644 --- a/manuscript.md +++ b/manuscript.md @@ -334,11 +334,8 @@ let x = circle 10 ~~~ ## Subprocess delegation -We can delegate the compilation of our CodeBlock to other application. -As an example, the creation of table \ref{tbl:delegate}, can be delegated to `multimarkdown` using following syntax: -``` -~~~{.delegate .multimarkdown} +~~~{.delegate .multimarkdown #tbl:delegate} | | Grouping || |First Header | Second Header | Third Header | | ------------ | :-----------: | -----------: | @@ -349,8 +346,11 @@ As an example, the creation of table \ref{tbl:delegate}, can be delegated to `mu |And more | With an escaped '\|' || [Prototype table] ~~~ -``` +We can delegate the compilation of our CodeBlock to other application. +As an example, the creation of table \ref{tbl:delegate}, can be delegated to `multimarkdown` using following syntax. Please notice the use of `#tbl:delegate` for assignment of label that can be refered in the text using `\ref{tbl:delegate}`. + +``` ~~~{.delegate .multimarkdown #tbl:delegate} | | Grouping || |First Header | Second Header | Third Header | @@ -362,6 +362,7 @@ As an example, the creation of table \ref{tbl:delegate}, can be delegated to `mu |And more | With an escaped '\|' || [Prototype table] ~~~ +```