Yoast / yoast-components

Accessible React components by Yoast
GNU General Public License v3.0
21 stars 6 forks source link

Implement buildStructuredUrl API #780

Closed abotteram closed 5 years ago

abotteram commented 5 years ago

Build an API that builds a URL using a urlStructure and urlParts.

const urlStructure = "https://www.example.com/%category%/%postname%/";
const urlParts = {
    category: [ "transportation", "flying" ],
    postname: "the-cost-of-flying",
};

// Outputs: https://www.example.com/transportation/flying/the-cost-of-flying
buildStructuredUrl( urlStructure, urlParts );

Specs: