Grok Tips: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

8 April 2025

  • curprev 10:4010:40, 8 April 2025 Littleguy talk contribs 777 bytes +777 Created page with "== programming source code markdown == If you want to distinguish source code from regular text in your instructions, feel free to use Markdown syntax. Specifically, you can use triple backticks (```) to create a code block for your source code, or single backticks (`) for inline code. Grok will interpret it accordingly and treat the code portions as distinct from regular instructions. Example: ```python def greet(name): return f"Hello, {name}!" print(greet("..."