はじめに #
CopilotのCHATの内容をcopyしてmarkdown形式で保存する方法
1. 問題 #
保存した文章を選択しcopyするとplain textになってしまう。
copyしたいCHATの内容
選択してcopyした内容
見出し情報#
や、code block\connect
の情報が消えてplain textになる。
To select a database in PostgreSQL, you need to connect to the desired database using the psql command-line tool. Here are the steps to do this:
1. Connect to PostgreSQL
First, connect to the PostgreSQL server. If you are already connected to a database, you can switch to another database using the \c (or \connect) command.
2. 解決方法 #
右クリックメニューのCopy
を使うとmarkdown形式のままcopyできる。
copyしたいCHATの内容
Copy Allだと過去のCHAT履歴もコピーされる
右クリックメニューでcopyした内容
To select a database in PostgreSQL, you need to connect to the desired database using the `psql` command-line tool. Here are the steps to do this:
### 1. Connect to PostgreSQL
First, connect to the PostgreSQL server. If you are already connected to a database, you can switch to another database using the `\c` (or `\connect`) command.
```bash
psql -U <username> -h <hostname> -p <port>
︙
おわりに #
あまりにも単純だったのに、半年ぐらい気づかなかった。。。