Skip to content

Instantly share code, notes, and snippets.

@tkanarsky
Created December 6, 2022 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkanarsky/8858d339f02567d5cd25fcf9c42911e2 to your computer and use it in GitHub Desktop.
Save tkanarsky/8858d339f02567d5cd25fcf9c42911e2 to your computer and use it in GitHub Desktop.

User

Could you give me an example of all your formatting options?


ChatGPT

Sure! Here are some examples of formatting options that are available in most text editing programs:

  • Bold: To make a word or phrase bold, surround it with asterisks (e.g. this text is bold) or with underscores (e.g. this text is bold).
  • Italic: To make a word or phrase italic, surround it with asterisks (e.g. this text is italic) or with underscores (e.g. this text is italic).
  • Code: To format a word or phrase as code, surround it with backticks (e.g. this text is code).
  • Strikethrough: To strikethrough a word or phrase, surround it with two tildes (e.g. this text is strikethrough).

Additionally, many text editors also support more advanced formatting options such as different font sizes, colors, and alignment. However, the availability of these options can vary depending on the program you are using.

I hope this helps! Let me know if you have any other questions.


User

How about tables?


ChatGPT

Yes, many text editors also support the ability to create tables. The specific syntax for creating tables can vary depending on the program you are using, but here is a basic example of how to create a table in markdown:

| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Cell 1   | Cell 2   | Cell 3   |
| Cell 4   | Cell 5   | Cell 6   |

This will create a table with three columns and two rows, like this:

Column 1 Column 2 Column 3
Cell 1 Cell 2 Cell 3
Cell 4 Cell 5 Cell 6

Again, the exact syntax for creating tables can vary depending on the program you are using, so it's best to consult the documentation for the specific program you are using to create tables.


User

Thanks!


ChatGPT

You're welcome! Let me know if you have any other questions. I'm here to help.


chat2gist v0.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment