FHomewood / dev-tools

A dot-files style repository intended to store all windows PowerShell scripts, bash scripts and dotfiles for ease of development and automation of workflow.
GNU General Public License v3.0
1 stars 0 forks source link

Fix Duplicate Tags Header in KIT Notes #23

Open FHomewood opened 6 months ago

FHomewood commented 6 months ago

Proposed Fix

There is currently a bug with how KIT notes templates are generated, giving two ## Tags sections, likely due to a issue with the regex captures not being accounted for when the actions command was implemented.

Current Notes Template

# _Keeping in Touch_ <br/> Thursday, 21 Mar 2024
Document to record and reference notes during keeping in touch meetings with team members.

### Last We Spoke
- 

### Check-in
- 

## Goals
- 

## Actions
### Proposed Actions Last KIT
- 

### Tags
-

### Feedback on Actions from Last KIT
- 

### Actions
- 

### Tags
- 

Expected Notes Template

# _Keeping in Touch_ <br/> Thursday, 21 Mar 2024
Document to record and reference notes during keeping in touch meetings with team members.

### Last We Spoke
- 

### Check-in
- 

## Goals
- 

## Actions
### Proposed Actions Last KIT
- 

### Feedback on Actions from Last KIT
- 

### Actions
- 

### Tags
- 
FHomewood commented 1 month ago

Suspected cause of this issue is in the regex pattern being used to pull information from the previous KIT note, looks like it's got an open ending group so is absorbing the Tags subheading. A fix has been implemented and linked to this issue to resolve this.