メインコンテンツへスキップ
  1. Blogs/

Github CopilotのCHAT内容をmarkdownとしてcopyする方法

·407 文字·
Memo
hiroki
著者
hiroki
クラウドを作るお仕事をしてます。
目次

はじめに
#

CopilotのCHATの内容をcopyしてmarkdown形式で保存する方法

1. 問題
#

保存した文章を選択しcopyするとplain textになってしまう。

copyしたいCHATの内容

alt text

選択して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の内容

alt text

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>

︙

おわりに
#

あまりにも単純だったのに、半年ぐらい気づかなかった。。。

Related

nfs-csi-driverではPVCのCapacityが機能しない問題
·1203 文字
Memo Kubernetes
Gitlab CI/CDでrepositoryにpushする方法
·1257 文字
Memo Gitlab
Pythonのlinter(Ruff)のTIPS
·758 文字
Memo Python