Files
geo/apps/desktop-client/src/main/adapters/wangyihao-links.ts
T

7 lines
302 B
TypeScript
Raw Normal View History

const WANGYI_PUBLIC_ARTICLE_URL_PREFIX = "https://www.163.com/dy/article";
export function wangyihaoPublicArticleUrl(articleId: string): string | null {
const normalized = articleId.trim();
return normalized ? `${WANGYI_PUBLIC_ARTICLE_URL_PREFIX}/${encodeURIComponent(normalized)}.html` : null;
}