Skip to content

Commit 7d8216a

Browse files
committed
Give code formatting example in Issue templates
1 parent 3f3fec3 commit 7d8216a

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Use Markdown syntax, see https://help.github.com/github/writing-on-github/basic-
2525
2626
Give your database version.
2727
28-
Also run node and show the output of:
28+
Also run Node.js and show the output of:
2929
3030
process.platform
3131
process.version
@@ -55,6 +55,10 @@ Include all SQL needed to create the database schema.
5555
5656
Use a gist for long code: see https://gist.github.com/
5757
58-
Format code by using three backticks on a line before and after code snippets.
58+
Format code by using three backticks on a line before and after code snippets, for example:
59+
60+
```
61+
const oracledb = require('oracledb');
62+
```
5963
6064
-->

.github/ISSUE_TEMPLATE/general-questions-and-runtime-problems.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ Include all SQL needed to create the database schema.
4747
4848
Use a gist for long code: see https://gist.github.com/
4949
50-
Format code by using three backticks on a line before and after code snippets.
50+
Format code by using three backticks on a line before and after code snippets, for example:
51+
52+
```
53+
const oracledb = require('oracledb');
54+
```
5155
5256
-->

.github/ISSUE_TEMPLATE/installation-questions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Also run node and show the output of:
4747

4848
3. Are you installing into vanilla Node.js, or using something like Electron?
4949

50-
4. Show the directory listing where your Oracle client libraries are installed (e.g. the Instant Client directory). Is it 64-bit or 32-bit?
50+
4. Show the directory listing where your Oracle Client libraries are installed (e.g. the Instant Client directory). Is it 64-bit or 32-bit?
5151

5252
5. Show what the `PATH` environment variable (on Windows) or `LD_LIBRARY_PATH` (on Linux) are set to?
5353

0 commit comments

Comments
 (0)