You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Source code comments in the UCodeImportExport unit make clear that cross references are not written, by design:
procedureTCodeExporter.WriteSnippet(const ParentNode: IXMLNode;
const Snippet: TSnippet);
var
SnippetNode: IXMLNode; // new snippet nodebegin
...
// Add nodes for properties: (ignore category and xrefs)// description node is written even if empty (which it shouldn't be)
fXMLDoc.CreateElement(
SnippetNode,
cDescriptionNode,
TSnippetExtraHelper.BuildREMLMarkup(Snippet.Description)
);
...
When a snippet with "See Also" snippets is exported the export does not include the reference to those snippets.
The is provision in the export file format to include these snippets, under the
codesnip-export/routines/routine/xref
XML tag.The text was updated successfully, but these errors were encountered: