You would want to keep a constant name, like Example, Sample code, etc., as language name text for code blocks. By default, the respective language name appears in the code blocks. Follow the below workaround to change the language name in code blocks.

This action would change the language name in all the code blocks in your knowledge base.

Solution

1_Screenshot-change_the_language_name_text_in_code_blocks.png

  1. Go to Settings -> Knowledge base site -> Custom CSS & JavaScript, and Custom CSS

  2. Paste the below CSS snippet in the window

div.code-toolbar>.toolbar .toolbar-item:first-child {
    visibility: hidden;
}
div.code-toolbar>.toolbar .toolbar-item:first-child span:before {
    visibility: visible;
    content: "Example" !important;
}
  1. Replace the text 'Example' with your desired text

  2. Click Save