From a8b8afb45c259d3ac8db886343fdd3286bb0c025 Mon Sep 17 00:00:00 2001 From: MantisClone Date: Sat, 22 Mar 2025 00:44:43 -0400 Subject: [PATCH] fix: code block syntax --- .github/workflows/integration-test.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 15762c4..054ec18 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -34,9 +34,10 @@ jobs: 3. Third item ### Code Blocks - ```python + + ``` def hello_contributor(): - print(f"Thanks for contributing to {{repository}}!") + print("Thanks for contributing!") return "We appreciate your help!" ``` @@ -82,9 +83,10 @@ jobs: [Visit Request Network](https://request.network/) ### Code Block Example - ```javascript + + ``` function testFunction() { - console.log("Testing code blocks in PR comments"); + console.log("Testing code blocks"); return true; } ``` @@ -127,7 +129,7 @@ jobs: This is a collapsed section containing additional information that's hidden by default. - ```yaml + ``` test: name: Integration test runs-on: ubuntu-latest