Skip to content

Latest commit

 

History

History
123 lines (92 loc) · 3.89 KB

cross_referencing.md

File metadata and controls

123 lines (92 loc) · 3.89 KB
nav_title article description page_order noindex
Cross-Referencing
Cross-referencing
Learn how to cross-reference other pages on Braze Docs.
3
true

Cross-referencing

Learn how to cross-reference other pages on Braze Docs. To cross-reference pages outside Braze Docs, use standard Markdown syntax. For general information about cross-references, see About content management.

{% multi_lang_include contributing/prerequisites.md %}

Create a cross-reference

When creating a cross-reference, you can either use the in-line method or reference-style method. The in-line method prioritizes clarity, while the reference-style method prioritizes readability.

{% tabs %} {% tab in-line %} Open the relevant Markdown file, then create your in-line link.

{% subtabs %} {% subtab Markdown %}

{% raw %}

[LINK_TEXT]({{site.baseurl}}/SHORT_URL)

{% endraw %}

Replace the following:

Placeholder Description
LINK_TEXT The page title or related action.
SHORT_URL The page URL with https://www.braze.com removed.
{: .reset-td-br-1 .reset-td-br-2}

Your in-line link should be similar to the following:

{% raw %}

Before continuing, [create your SSH token]({{site.baseurl}}/docs/developer_guide/platform_wide/sdk_authentication).

{% endraw %} {% endsubtab %}

{% subtab HTML %}

{% raw %}

<a href='[SHORT_URL]'>[LINK_TEXT]</a>

{% endraw %}

Replace the following:

Placeholder Description
LINK_TEXT The page title or related action.
SHORT_URL The page URL with https://www.braze.com removed.
{: .reset-td-br-1 .reset-td-br-2}

Your in-line link should be similar to the following:

{% raw %}

To learn about the different custom attribute data types you can use to segment users, view <a href="/docs/user_guide/data_and_analytics/custom_data/custom_attributes/#custom-attribute-data-types">Custom attribute data types</a>.

{% endraw %} {% endsubtab %} {% endsubtabs %}

{% endtab %}

{% tab reference-style %} Open the relevant Markdown file, then create your reference-style link.

[LINK_TEXT][REFERENCE_NUMBER]

Replace the following:

Placeholder Description
LINK_TEXT The page title or related action.
REFERENCE_NUMBER Assign any positive integer that's not already assigned to another reference-style link on this page.
{: .reset-td-br-1 .reset-td-br-2}

Your references should be similar to the following:

Before continuing, [create your SSH token][2]. When you're finished, see [Step 2: Uploading your token][5].

At the bottom of the page, you'll add the related links.

{% raw %}

[REFERENCE_NUMBER]: {{site.baseurl}}SHORT_URL

{% endraw %}

Replace the following:

Placeholder Description
REFERENCE_NUMBER The number of the reference you'd like to link to.
SHORT_URL The page URL with https://www.braze.com/docs removed.
{: .reset-td-br-1 .reset-td-br-2}

Your links should be similar to the following:

{% raw %}

[2]: {{site.baseurl}}/developer_guide/platform_wide/sdk_authentication/
[5]: {{site.baseurl}}/developer_guide/platform_wide/swift#step-2-uploading-your-token

{% endraw %} {% endtab %} {% endtabs %}