Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(datasource/deb): All items in the urls array are wrapped between []() character. #31161

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions lib/modules/versioning/deb/index.ts
Original file line number Diff line number Diff line change
@@ -5,9 +5,9 @@ import type { VersioningApi } from '../types';

export const id = 'deb';
export const displayName = 'Deb version';
export const urls = [
'https://www.debian.org/doc/debian-policy/ch-controlfields.html#version',
'https://manpages.debian.org/unstable/dpkg-dev/deb-version.7.en.html',
export const urls = [
'[Debian Policy Manual - Version Control Fields](https://www.debian.org/doc/debian-policy/ch-controlfields.html#version)',
'[Debian Manual - deb-version(7)](https://manpages.debian.org/unstable/dpkg-dev/deb-version.7.en.html)',
];
export const supportsRanges = false;