Skip to content

Commit 54e9e59

Browse files
feat(article): ai meets terraform prompt strategies for test generation post (#73)
1 parent dad4989 commit 54e9e59

File tree

7 files changed

+199
-8
lines changed

7 files changed

+199
-8
lines changed

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
/resources/
44
.DS_Store
55

6-
# leave cursor settings and configs up to each dev with their tooling prefs
7-
.cursor/
8-
9-
# leave CC settings and configs up to each dev with their tooling prefs
10-
.claude/
6+
CLAUDE.md
7+
.claude/*
8+
.cursor/*

content/blog/ai-meets-tf-prompt-strategies-for-test-generation.md

Lines changed: 193 additions & 0 deletions
Large diffs are not rendered by default.

layouts/_default/single.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h1 class="postTitle">
1919
{{end}}
2020
</h1>
2121
{{ if .Params.author }}<b>By {{.Params.author}}</b>{{end}}
22-
<div class="entryDesc">{{ .Description }}</div>
22+
<div class="entryDesc">{{ .Description | safeHTML }}</div>
2323
</div>
2424
</div>
2525

layouts/partials/news-entry.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h3 class="postTitle">
3232
{{end}}
3333
</h3>
3434

35-
<div class="entryDesc">{{ if .Params.author }}<b>By {{.Params.author}}</b>{{end}} - {{ .Description }}</div>
35+
<div class="entryDesc">{{ if .Params.author }}<b>By {{.Params.author}}</b>{{end}} - {{ .Description | safeHTML }}</div>
3636
{{ if .Params.outbound }}
3737
<a href="{{ .Params.outbound }}" target="_blank" class="entry-link text-gradient">Read More &rsaquo;</a>
3838
{{else}}
@@ -41,4 +41,4 @@ <h3 class="postTitle">
4141
</div>
4242
</div>
4343
</div>
44-
</div>
44+
</div>
234 KB
Loading
20 KB
Loading
2.78 MB
Loading

0 commit comments

Comments
 (0)