From 9e90f07f7c27105ce8ca57bc9d841527857a9e4b Mon Sep 17 00:00:00 2001 From: bblietz Date: Sat, 16 May 2026 14:09:54 -0700 Subject: [PATCH] test: tag one BrightScript fence to verify ReadMe rendering Tags the AppendString() example block in ifstringops.md with ```brightscript to test whether ReadMe's syntax highlighter recognizes the language identifier and applies highlighting. The other 26 code blocks on the same page are intentionally left untagged, providing an A/B comparison on a single rendered page. If staging renders the tagged block with BrightScript highlighting, this validates the proposed repo-wide BrightScript fence sweep (~1,300 unlabeled fences across DEVELOPER + REFERENCES). --- docs/REFERENCES/brightscript/interfaces/ifstringops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/REFERENCES/brightscript/interfaces/ifstringops.md b/docs/REFERENCES/brightscript/interfaces/ifstringops.md index f98e2fb2..80c55841 100644 --- a/docs/REFERENCES/brightscript/interfaces/ifstringops.md +++ b/docs/REFERENCES/brightscript/interfaces/ifstringops.md @@ -45,7 +45,7 @@ Appends the specified first set of characters of the provided string to the end The AppendString() function modifies the object on which it is called, which can result in unexpected results if called on a literal string constant rather than a string object. Consider the following example: -``` +```brightscript x = "one" print type(x) ' prints "String" x.AppendString("two", 3)