Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
12d0a13
(cdocs)(rum) Advanced configuration
hestonhoffman Dec 15, 2025
9344781
Bump package
hestonhoffman Dec 15, 2025
23c99aa
wip
hestonhoffman Dec 16, 2025
a8d43a0
Merge branch 'master' into heston/cdocs-rum-advanced-config
hestonhoffman Dec 22, 2025
ca2dff0
Rename page
hestonhoffman Dec 22, 2025
07bb2c5
Add file to .gitignore
hestonhoffman Dec 22, 2025
01184d2
First round
hestonhoffman Dec 22, 2025
b6e4a13
version numbers
hestonhoffman Jan 7, 2026
32b0390
wip
hestonhoffman Jan 7, 2026
df531c0
wip
hestonhoffman Jan 8, 2026
3159d16
wip
hestonhoffman Jan 8, 2026
0dfe455
merge master
hestonhoffman Jan 8, 2026
9428a34
Fix gitignore
hestonhoffman Jan 9, 2026
fccd755
Bump package with version fix
hestonhoffman Jan 10, 2026
d13436c
Bump for fix
hestonhoffman Jan 10, 2026
909c8f8
bump
hestonhoffman Jan 11, 2026
c6c86a4
wip
hestonhoffman Jan 12, 2026
58e8fc8
wip
hestonhoffman Jan 15, 2026
f6f27d7
Update and bump
hestonhoffman Jan 16, 2026
d7ae5c4
Merge branch 'master' into heston/cdocs-rum-advanced-config
hestonhoffman Feb 3, 2026
15c64ec
Bump hugo integration
hestonhoffman Feb 3, 2026
3d7decb
gitignore shenanigans
hestonhoffman Feb 3, 2026
e43b692
Small test page
hestonhoffman Feb 4, 2026
8b6f9d5
Bump cdocs
jhgilbert Feb 5, 2026
e2df8eb
Tweak bundling settings
jhgilbert Feb 5, 2026
5e4f0ab
Bump version
jhgilbert Feb 5, 2026
b1ad489
Bump version
jhgilbert Feb 5, 2026
a07474e
Bump for test
hestonhoffman Feb 11, 2026
7026431
Apply suggestion from @hestonhoffman
hestonhoffman Feb 17, 2026
184f013
Undo test changes
hestonhoffman Feb 17, 2026
7f8e285
Merge branch 'master' into heston/cdocs-rum-advanced-config
hestonhoffman Feb 17, 2026
8f74417
Remove test page from gitignore
hestonhoffman Feb 17, 2026
a48b67c
Merge branch 'master' into heston/cdocs-rum-advanced-config
hestonhoffman Feb 17, 2026
ffacf00
Fix logical errors
hestonhoffman Feb 18, 2026
d076670
Merge branch 'heston/cdocs-rum-advanced-config' of github.com:DataDog…
hestonhoffman Feb 18, 2026
cecf6f6
Remove stray file
hestonhoffman Feb 18, 2026
3672a06
Apply suggestions from code review
hestonhoffman Feb 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .vscode/markdoc.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,19 @@
"description": "Markdoc if tag with equals condition"
},

"Version": {
"scope": "markdoc",
"prefix": ";;version",
"body": [
"<!-- Version must meet ${1:version} -->",
"{% if semverIsAtLeast($${2:semver_trait_id}, \"${1:version}\") %}",
"${3:Content shown if version is met}",
"{% /if %}",
"<!-- ends ${1:version} -->"
],
"description": "Show content that meets a semantic version"
},

"Image": {
"scope": "markdoc",
"prefix": ";;image",
Expand All @@ -81,7 +94,7 @@

"Video": {
"scope": "markdoc",
"prefix": ";;;video",
"prefix": ";;video",
"body": ["{% img src=\"${1:path/to/video.mp4}\" alt=\"${2:Descriptive video alt text}\" video=\"true\" /%}"],
"description": "Markdoc video tag using img with video attribute"
},
Expand Down
1 change: 1 addition & 0 deletions content/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# This file lists compiled Cdocs files to keep them out of version control. For more information, see the internal Cdocs documentation: https://datadoghq.atlassian.net/wiki/spaces/docs4docs/pages/4898063037/Cdocs+Build

/en/opentelemetry/instrument/dd_sdks/api_support.md
/en/real_user_monitoring/application_monitoring/browser/advanced_configuration.md
/en/real_user_monitoring/correlate_with_other_telemetry/profiling/_index.md
/en/real_user_monitoring/guide/proxy-mobile-rum-data.md
/en/real_user_monitoring/guide/proxy-rum-data.md
Expand Down
Loading