From a80dc8cbb8d91a092b9acb1b8221197f158aa644 Mon Sep 17 00:00:00 2001 From: Andreas Dutzler Date: Tue, 2 Jan 2024 11:06:47 +0100 Subject: [PATCH] Docs: Add See Also callout --- docs/_config.yml | 3 +++ docs/api/operators.md | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/_config.yml b/docs/_config.yml index 69f52b8..e3071c1 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -17,6 +17,9 @@ callouts: note: title: Note color: purple + seealso: + title: See Also + color: green last_edit_timestamp: true # requires `last_modified_date` in frontmatter last_edit_time_format: "%Y-%m-%d" diff --git a/docs/api/operators.md b/docs/api/operators.md index d1aea80..06d08be 100644 --- a/docs/api/operators.md +++ b/docs/api/operators.md @@ -16,9 +16,7 @@ This module uses derived data types where the default operators are overloaded w - Dot-Product (single contraction) `A*B` - Double-Dot-Product (double contraction) `A**B` -{: .note } -> See Also -> +{: .seealso } > There are also functions available for the dyadic product `A.dya.B` and the symmetric crossed-dyadic product `A.cdya.B` to perform `C(i,j,k,l) = (A(i,k)*B(j,l) + A(i,l)*B(j,k) + B(i,k)*A(j,l) + B(i,l)*A(j,k)) / 4.`. {: .warning }