├── .github
└── workflows
│ ├── build_and_test.yaml
│ └── publish.yaml
├── .gitignore
├── Directory.Build.props
├── Directory.Packages.props
├── GiGraph.sln
├── GiGraph.sln.DotSettings
├── LICENSE
├── README.md
├── assets
├── Synthetic_Biology_Open_Language_(SBOL)_standard_visual_symbols.png
├── examples
│ ├── arrowheads.svg
│ ├── cluster-edge-clipping.svg
│ ├── clusters.svg
│ ├── complex-graph-with-subgraphs.svg
│ ├── complex-graph.svg
│ ├── custom-styling.svg
│ ├── default-attributes.svg
│ ├── edge-compass-point.svg
│ ├── edge-many-to-many-with-attrs.svg
│ ├── edge-many-to-many.svg
│ ├── edge-many-to-one.svg
│ ├── edge-one-to-many-group.svg
│ ├── edge-one-to-many-subgraph.svg
│ ├── edge-sequence-of-three.svg
│ ├── edge-sequence-with-group-and-attrs.svg
│ ├── edge-sequence-with-group.svg
│ ├── hello-world-directed.svg
│ ├── hello-world-undirected.svg
│ ├── html-node-with-port.svg
│ ├── html-node.svg
│ ├── html-styled-label.svg
│ ├── label-identifiers.svg
│ ├── label-justification.svg
│ ├── multicolor-edges.svg
│ ├── node-group-of-three.svg
│ ├── node-hexagon-hello-world.svg
│ ├── record-node-hello-world.svg
│ ├── record-node-subrecord-with-port.svg
│ ├── record-node-subrecord.svg
│ └── subsections.svg
├── graph.svg
├── icon.ico
├── icon.png
├── jetbrains.svg
├── logo.svg
└── social-preview.png
├── src
├── ADR
│ ├── 01. Extensibility.md
│ ├── 02. Enumerations.md
│ ├── 03. Attribute key mapping.md
│ └── 04. Attribute property source generator.md
├── GiGraph.Dot.Examples
│ ├── Basic
│ │ ├── Annotation.cs
│ │ ├── Arrowheads.cs
│ │ ├── HelloWorld.cs
│ │ ├── LabelJustification.cs
│ │ ├── LabelPlaceholders.cs
│ │ └── RecordNodes.cs
│ ├── Complex
│ │ ├── WithClusters.cs
│ │ ├── WithCustomNodeLayout.cs
│ │ ├── WithCustomStyles.cs
│ │ ├── WithSubsections.cs
│ │ ├── WithSvgCssStylesheet.cs
│ │ └── stylesheet.css
│ ├── GiGraph.Dot.Examples.csproj
│ ├── Html
│ │ ├── HtmlColoredTextNodeFromBuilder.cs
│ │ ├── HtmlStyledEdgeLabel.cs
│ │ ├── HtmlStyledNodeText.cs
│ │ ├── HtmlTableNode.cs
│ │ └── HtmlTableStringNode.cs
│ └── Program.cs
├── GiGraph.Dot.SourceGenerators
│ ├── Attributes
│ │ ├── AttributePropertyDeclaration.cs
│ │ └── DotAttributePropertiesGenerator.cs
│ ├── Extensions
│ │ ├── AccessibilityExtensions.cs
│ │ ├── BuildMessageWriterExtension.cs
│ │ └── SymbolExtensions.cs
│ ├── GiGraph.Dot.SourceGenerators.csproj
│ └── IsExternalInit.cs
└── GiGraph.Dot
│ ├── Entities
│ ├── Attributes
│ │ ├── Collections
│ │ │ ├── DotAttributeCollection.Getters.cs
│ │ │ ├── DotAttributeCollection.IEnumerable.cs
│ │ │ ├── DotAttributeCollection.Setters.cs
│ │ │ └── DotAttributeCollection.cs
│ │ ├── DotAttribute.Generic.cs
│ │ ├── DotAttribute.cs
│ │ ├── DotBoolAttribute.cs
│ │ ├── DotColorAttribute.cs
│ │ ├── DotComplexTypeArrayAttribute.cs
│ │ ├── DotComplexTypeAttribute.cs
│ │ ├── DotDoubleArrayAttribute.cs
│ │ ├── DotDoubleAttribute.cs
│ │ ├── DotEnumAttribute.cs
│ │ ├── DotEscapeStringAttribute.cs
│ │ ├── DotIntAttribute.cs
│ │ ├── DotNullAttribute.cs
│ │ ├── DotRawAttribute.cs
│ │ ├── DotStringAttribute.cs
│ │ ├── Factories
│ │ │ └── DotAttributeFactory.cs
│ │ └── Properties
│ │ │ ├── Accessors
│ │ │ ├── DotEntityAttributesAccessor.Generic.cs
│ │ │ ├── DotEntityAttributesAccessor.cs
│ │ │ ├── DotEntityRootAttributesAccessor.cs
│ │ │ └── IDotEntityAttributesAccessor.cs
│ │ │ ├── Common
│ │ │ ├── Font
│ │ │ │ ├── DotFontAttributes.Generic.cs
│ │ │ │ ├── DotFontAttributes.cs
│ │ │ │ └── IDotFontAttributes.cs
│ │ │ ├── GraphCluster
│ │ │ │ ├── DotGraphClusterCommonStyleAttributes.cs
│ │ │ │ ├── DotGraphClusterLabelOptionsAttributes.cs
│ │ │ │ ├── IDotGraphClusterCommonStyleAttributes.cs
│ │ │ │ └── IDotGraphClusterLabelOptionsAttributes.cs
│ │ │ ├── Hyperlink
│ │ │ │ ├── DotHyperlinkAttributes.Generic.cs
│ │ │ │ ├── DotHyperlinkAttributes.cs
│ │ │ │ └── IDotHyperlinkAttributes.cs
│ │ │ ├── Style
│ │ │ │ ├── DotEntityStyleAttributesWithMetadata.cs
│ │ │ │ ├── DotStyleOptionsExtension.cs
│ │ │ │ └── IDotEntityStyleAttributes.cs
│ │ │ └── SvgStyleSheet
│ │ │ │ ├── DotSvgStyleSheetAttributes.Generic.cs
│ │ │ │ ├── DotSvgStyleSheetAttributes.cs
│ │ │ │ └── IDotSvgStyleSheetAttributes.cs
│ │ │ ├── DotEntityAttributes.Generic.cs
│ │ │ ├── DotEntityAttributes.cs
│ │ │ ├── DotEntityAttributesWithMetadata.cs
│ │ │ ├── IDotEntityAttributes.cs
│ │ │ └── KeyLookup
│ │ │ ├── DotMemberAttributeKeyLookup.cs
│ │ │ └── DotMemberAttributeKeyLookupBuilder.cs
│ ├── Clusters
│ │ ├── Attributes
│ │ │ ├── DotClusterLayoutAttributes.cs
│ │ │ ├── DotClusterRootAttributes.cs
│ │ │ ├── DotClusterStyleAttributes.Qualities.cs
│ │ │ ├── DotClusterStyleAttributes.cs
│ │ │ ├── IDotClusterAttributes.cs
│ │ │ ├── IDotClusterLayoutAttributes.cs
│ │ │ ├── IDotClusterRootAttributes.cs
│ │ │ └── IDotClusterStyleAttributes.cs
│ │ ├── Collections
│ │ │ ├── DotClusterCollection.cs
│ │ │ ├── DotGraphClusterCollection.Attributes.cs
│ │ │ └── DotGraphClusterCollection.cs
│ │ ├── DotCluster.cs
│ │ ├── DotClusterSection.Attributes.cs
│ │ └── DotClusterSection.cs
│ ├── Edges
│ │ ├── Attributes
│ │ │ ├── DotEdgeEndpointLabelsAttributes.cs
│ │ │ ├── DotEdgeEndpointLabelsFontAttributes.cs
│ │ │ ├── DotEdgeHyperlinkAttributes.cs
│ │ │ ├── DotEdgeLabelHyperlinkAttributes.cs
│ │ │ ├── DotEdgeLabelOptionsAttributes.cs
│ │ │ ├── DotEdgeLayoutAttributes.cs
│ │ │ ├── DotEdgeRootAttributes.cs
│ │ │ ├── DotEdgeStyleAttributes.Qualities.cs
│ │ │ ├── DotEdgeStyleAttributes.cs
│ │ │ ├── IDotEdgeAttributes.cs
│ │ │ ├── IDotEdgeEndpointLabelsAttributes.cs
│ │ │ ├── IDotEdgeHyperlinkAttributes.cs
│ │ │ ├── IDotEdgeLabelOptionsAttributes.cs
│ │ │ ├── IDotEdgeLayoutAttributes.cs
│ │ │ ├── IDotEdgeRootAttributes.cs
│ │ │ └── IDotEdgeStyleAttributes.cs
│ │ ├── Collections
│ │ │ ├── DotEdgeCollection.Attributes.cs
│ │ │ ├── DotEdgeCollection.Loop.cs
│ │ │ ├── DotEdgeCollection.ManyToMany.cs
│ │ │ ├── DotEdgeCollection.ManyToOne.cs
│ │ │ ├── DotEdgeCollection.OneToMany.cs
│ │ │ ├── DotEdgeCollection.Sequence.cs
│ │ │ └── DotEdgeCollection.cs
│ │ ├── DotEdge.Generic.cs
│ │ ├── DotEdge.cs
│ │ ├── DotEdgeDefinition.Attributes.cs
│ │ ├── DotEdgeDefinition.cs
│ │ ├── DotEdgeSequence.cs
│ │ └── Endpoints
│ │ │ ├── Attributes
│ │ │ ├── DotEdgeEndpointAttributes.cs
│ │ │ ├── DotEdgeEndpointHyperlinkAttributes.cs
│ │ │ ├── DotEdgeHeadAttributes.cs
│ │ │ ├── DotEdgeHeadHyperlinkAttributes.cs
│ │ │ ├── DotEdgeTailAttributes.cs
│ │ │ ├── DotEdgeTailHyperlinkAttributes.cs
│ │ │ ├── IDotEdgeEndpointAttributes.cs
│ │ │ └── IDotEdgeEndpointRootAttributes.cs
│ │ │ ├── DotClusterEndpoint.cs
│ │ │ ├── DotEdgeEndpoint.Attributes.cs
│ │ │ ├── DotEdgeEndpoint.Generic.cs
│ │ │ ├── DotEdgeEndpoint.cs
│ │ │ ├── DotEndpoint.cs
│ │ │ ├── DotEndpointDefinition.cs
│ │ │ ├── DotEndpointGroup.cs
│ │ │ └── DotSubgraphEndpoint.cs
│ ├── Graphs
│ │ ├── Attributes
│ │ │ ├── DotGraphCanvasAttributes.Scaling.cs
│ │ │ ├── DotGraphCanvasAttributes.Viewport.cs
│ │ │ ├── DotGraphCanvasAttributes.cs
│ │ │ ├── DotGraphClustersAttributes.cs
│ │ │ ├── DotGraphClustersStyleAttributes.Qualities.cs
│ │ │ ├── DotGraphClustersStyleAttributes.cs
│ │ │ ├── DotGraphFontAttributes.cs
│ │ │ ├── DotGraphLayoutAttributes.Packing.cs
│ │ │ ├── DotGraphLayoutAttributes.PackingMode.cs
│ │ │ ├── DotGraphLayoutAttributes.RankSeparation.cs
│ │ │ ├── DotGraphLayoutAttributes.cs
│ │ │ ├── DotGraphRootAttributes.cs
│ │ │ ├── DotGraphStyleAttributes.cs
│ │ │ ├── DotGraphSvgStyleSheetAttributes.cs
│ │ │ ├── IDotGraphAttributes.cs
│ │ │ ├── IDotGraphCanvasAttributes.cs
│ │ │ ├── IDotGraphClustersAttributes.cs
│ │ │ ├── IDotGraphClustersRootAttributes.cs
│ │ │ ├── IDotGraphClustersStyleAttributes.cs
│ │ │ ├── IDotGraphFontAttributes.cs
│ │ │ ├── IDotGraphLayoutAttributes.cs
│ │ │ ├── IDotGraphRootAttributes.cs
│ │ │ ├── IDotGraphStyleAttributes.cs
│ │ │ └── IDotGraphSvgStyleSheetAttributes.cs
│ │ ├── Collections
│ │ │ ├── DotCommonGraphCollection.cs
│ │ │ └── DotGraphSectionCollection.cs
│ │ ├── DotCommonGraphSection.cs
│ │ ├── DotGraph.cs
│ │ ├── DotGraphSection.Attributes.cs
│ │ └── DotGraphSection.cs
│ ├── Html
│ │ ├── Attributes
│ │ │ ├── Collections
│ │ │ │ └── DotHtmlAttributeCollection.cs
│ │ │ ├── DotHtmlBoolAttribute.cs
│ │ │ ├── DotHtmlEnumAttribute.cs
│ │ │ ├── DotHtmlEscapeStringAttribute.cs
│ │ │ ├── DotHtmlStringAttribute.cs
│ │ │ ├── Factories
│ │ │ │ └── DotHtmlAttributeFactory.cs
│ │ │ └── Properties
│ │ │ │ ├── DotHtmlElementAttributes.cs
│ │ │ │ └── DotHtmlElementRootAttributesAccessor.cs
│ │ ├── Builder
│ │ │ ├── DotHtmlBuilder.Comment.cs
│ │ │ ├── DotHtmlBuilder.Custom.cs
│ │ │ ├── DotHtmlBuilder.Font.cs
│ │ │ ├── DotHtmlBuilder.FontStyle.cs
│ │ │ ├── DotHtmlBuilder.Image.cs
│ │ │ ├── DotHtmlBuilder.Line.cs
│ │ │ ├── DotHtmlBuilder.Rules.cs
│ │ │ ├── DotHtmlBuilder.StyledText.cs
│ │ │ ├── DotHtmlBuilder.Table.cs
│ │ │ ├── DotHtmlBuilder.Text.cs
│ │ │ └── DotHtmlBuilder.cs
│ │ ├── DotHtml.cs
│ │ ├── DotHtmlComment.cs
│ │ ├── DotHtmlElement.IEnumerable.cs
│ │ ├── DotHtmlElement.cs
│ │ ├── DotHtmlEntity.Generic.cs
│ │ ├── DotHtmlEntity.cs
│ │ ├── DotHtmlEntityCollection.cs
│ │ ├── DotHtmlReadOnlyEntity.cs
│ │ ├── DotHtmlTag.cs
│ │ ├── DotHtmlVoidElement.cs
│ │ ├── Font
│ │ │ ├── Attributes
│ │ │ │ ├── DotHtmlFontAttributes.cs
│ │ │ │ └── IDotHtmlFontAttributes.cs
│ │ │ ├── DotHtmlFont.Attributes.cs
│ │ │ ├── DotHtmlFont.EntityHelpers.cs
│ │ │ ├── DotHtmlFont.TextHelpers.cs
│ │ │ ├── DotHtmlFont.cs
│ │ │ └── Styles
│ │ │ │ ├── DotHtmlBold.cs
│ │ │ │ ├── DotHtmlFontStyle.Helpers.cs
│ │ │ │ ├── DotHtmlFontStyle.cs
│ │ │ │ ├── DotHtmlItalic.cs
│ │ │ │ ├── DotHtmlOverline.cs
│ │ │ │ ├── DotHtmlStrikethrough.cs
│ │ │ │ ├── DotHtmlSubscript.cs
│ │ │ │ ├── DotHtmlSuperscript.cs
│ │ │ │ └── DotHtmlUnderline.cs
│ │ ├── IDotHtmlContentEntity.cs
│ │ ├── IDotHtmlEntity.cs
│ │ ├── Image
│ │ │ ├── Attributes
│ │ │ │ ├── DotHtmlImageAttributes.cs
│ │ │ │ └── IDotHtmlImageAttributes.cs
│ │ │ ├── DotHtmlImage.Attributes.cs
│ │ │ └── DotHtmlImage.cs
│ │ ├── LineBreak
│ │ │ ├── Attributes
│ │ │ │ ├── DotHtmlLineBreakAttributes.cs
│ │ │ │ └── IDotHtmlLineBreakAttributes.cs
│ │ │ ├── DotHtmlLineBreak.Attributes.cs
│ │ │ └── DotHtmlLineBreak.cs
│ │ ├── Rule
│ │ │ ├── DotHtmlHorizontalRule.cs
│ │ │ ├── DotHtmlRule.cs
│ │ │ └── DotHtmlVerticalRule.cs
│ │ ├── Table
│ │ │ ├── Attributes
│ │ │ │ ├── DotHtmlTableAlignmentAttributes.cs
│ │ │ │ ├── DotHtmlTableAttributes.cs
│ │ │ │ ├── DotHtmlTableCellAlignmentAttributes.cs
│ │ │ │ ├── DotHtmlTableCellAttributes.cs
│ │ │ │ ├── DotHtmlTableCellStyleAttributes.cs
│ │ │ │ ├── DotHtmlTableStyleAttributes.cs
│ │ │ │ ├── DotHtmlTableTableCellCommonAlignmentAttributes.cs
│ │ │ │ ├── DotHtmlTableTableCellCommonAttributes.cs
│ │ │ │ ├── DotHtmlTableTableCellCommonStyleAttributes.Qualities.cs
│ │ │ │ ├── DotHtmlTableTableCellCommonStyleAttributes.cs
│ │ │ │ ├── DotHtmlTableTableCellHyperlinkAttributes.cs
│ │ │ │ ├── DotHtmlTableTableCellSizeAttributes.cs
│ │ │ │ ├── IDotHtmlTableAlignmentAttributes.cs
│ │ │ │ ├── IDotHtmlTableAttributes.cs
│ │ │ │ ├── IDotHtmlTableCellAlignmentAttributes.cs
│ │ │ │ ├── IDotHtmlTableCellAttributes.cs
│ │ │ │ ├── IDotHtmlTableCellStyleAttributes.cs
│ │ │ │ ├── IDotHtmlTableStyleAttributes.cs
│ │ │ │ ├── IDotHtmlTableTableCellCommonAlignmentAttributes.cs
│ │ │ │ ├── IDotHtmlTableTableCellCommonAttributes.cs
│ │ │ │ ├── IDotHtmlTableTableCellCommonStyleAttributes.cs
│ │ │ │ ├── IDotHtmlTableTableCellHyperlinkAttributes.cs
│ │ │ │ └── IDotHtmlTableTableCellSizeAttributes.cs
│ │ │ ├── DotHtmlTable.Attributes.cs
│ │ │ ├── DotHtmlTable.cs
│ │ │ ├── DotHtmlTableCell.Attributes.cs
│ │ │ ├── DotHtmlTableCell.cs
│ │ │ ├── DotHtmlTableRow.StyledText.cs
│ │ │ ├── DotHtmlTableRow.Text.cs
│ │ │ └── DotHtmlTableRow.cs
│ │ └── Text
│ │ │ └── DotHtmlText.cs
│ ├── Labels
│ │ ├── DotHtmlLabel.cs
│ │ ├── DotLabel.cs
│ │ ├── DotRecordLabel.cs
│ │ └── DotTextLabel.cs
│ ├── Nodes
│ │ ├── Attributes
│ │ │ ├── DotNodeGeometryAttributes.cs
│ │ │ ├── DotNodeImageAttributes.cs
│ │ │ ├── DotNodeLabelOptionsAttributes.cs
│ │ │ ├── DotNodeLayoutAttributes.cs
│ │ │ ├── DotNodeRootAttributes.cs
│ │ │ ├── DotNodeSizeAttributes.cs
│ │ │ ├── DotNodeStyleAttributes.Qualities.cs
│ │ │ ├── DotNodeStyleAttributes.cs
│ │ │ ├── DotNodeTransformAttributes.cs
│ │ │ ├── IDotNodeAttributes.cs
│ │ │ ├── IDotNodeGeometryAttributes.cs
│ │ │ ├── IDotNodeImageAttributes.cs
│ │ │ ├── IDotNodeLabelOptionsAttributes.cs
│ │ │ ├── IDotNodeLayoutAttributes.cs
│ │ │ ├── IDotNodeRootAttributes.cs
│ │ │ ├── IDotNodeSizeAttributes.cs
│ │ │ ├── IDotNodeStyleAttributes.cs
│ │ │ └── IDotNodeTransformAttributes.cs
│ │ ├── Collections
│ │ │ ├── DotNodeCollection.Attributes.cs
│ │ │ ├── DotNodeCollection.Qualities.cs
│ │ │ └── DotNodeCollection.cs
│ │ ├── DotNode.cs
│ │ ├── DotNodeDefinition.Attributes.cs
│ │ ├── DotNodeDefinition.Qualities.cs
│ │ ├── DotNodeDefinition.cs
│ │ └── DotNodeGroup.cs
│ ├── Qualities
│ │ ├── IDotFillable.cs
│ │ ├── IDotHasBorderStyleAttributes.cs
│ │ ├── IDotHasFontAttributes.cs
│ │ ├── IDotHasHtmlTableBorders.cs
│ │ ├── IDotHasHyperlinkAttributes.cs
│ │ ├── IDotHasHyperlinkAttributesWithTooltip.cs
│ │ ├── IDotHasLineStyleAttributes.cs
│ │ ├── IDotHasStyleOptions.cs
│ │ ├── IDotShapableNode.cs
│ │ ├── IDotStripeFillable.cs
│ │ ├── IDotStylableEdge.cs
│ │ └── IDotWedgeFillable.cs
│ └── Subgraphs
│ │ ├── Attributes
│ │ ├── DotSubgraphRootAttributes.cs
│ │ ├── IDotSubgraphAttributes.cs
│ │ └── IDotSubgraphRootAttributes.cs
│ │ ├── Collections
│ │ └── DotSubgraphCollection.cs
│ │ ├── DotSubgraph.cs
│ │ ├── DotSubgraphSection.Attributes.cs
│ │ └── DotSubgraphSection.cs
│ ├── Extensions
│ ├── DotAttributeCollectionExtension.cs
│ ├── DotEdgeEndpointRootAttributesExtension.Arrowhead.cs
│ ├── DotEdgeEndpointRootAttributesExtension.Port.cs
│ ├── DotEntityAttributesExtension.cs
│ ├── DotFillableExtension.cs
│ ├── DotGraphExtension.Save.cs
│ ├── DotGraphExtension.SaveAsync.cs
│ ├── DotGraphExtension.ToDot.cs
│ ├── DotGraphStyleAttributesExtension.cs
│ ├── DotHasBorderStyleAttributesExtension.cs
│ ├── DotHasFontAttributesExtension.cs
│ ├── DotHasHtmlTableBordersExtension.cs
│ ├── DotHasHyperlinkAttributesExtension.cs
│ ├── DotHasLineStyleAttributesExtension.cs
│ ├── DotHasStyleOptionsExtension.cs
│ ├── DotNodeHtmlExtension.cs
│ ├── DotNodeRecordExtension.cs
│ ├── DotNodeRoundedRecordExtension.cs
│ ├── DotShapableNodeExtension.cs
│ ├── DotStringExtension.cs
│ ├── DotStripeFillableExtension.cs
│ ├── DotStylableEdgeExtension.cs
│ └── DotWedgeFillableExtension.cs
│ ├── GiGraph.Dot.csproj
│ ├── Output
│ ├── Entities
│ │ ├── IDotEntity.cs
│ │ ├── IDotGraph.cs
│ │ └── IDotGraphSection.cs
│ ├── EnumHelpers
│ │ └── DotEnumMetadata.cs
│ ├── Generators
│ │ ├── Attributes
│ │ │ ├── DotAttributeCollectionGenerator.cs
│ │ │ ├── DotAttributeGenerator.Generic.cs
│ │ │ ├── DotAttributeGenerator.cs
│ │ │ ├── DotAttributeListGenerator.cs
│ │ │ └── DotHtmlLabelAttributeGenerator.cs
│ │ ├── Clusters
│ │ │ ├── DotClusterGenerator.cs
│ │ │ └── DotClusterSectionGenerator.cs
│ │ ├── DotEntityGenerator.cs
│ │ ├── DotEntityWithAttributeListGenerator.cs
│ │ ├── Edges
│ │ │ ├── Attributes
│ │ │ │ └── DotGlobalEdgeAttributesGenerator.cs
│ │ │ ├── DotClusterEndpointGenerator.cs
│ │ │ ├── DotEdgeCollectionGenerator.cs
│ │ │ ├── DotEdgeEndpointGenerator.cs
│ │ │ ├── DotEdgeEndpointGroupGenerator.cs
│ │ │ ├── DotEdgeGenerator.cs
│ │ │ ├── DotEdgeSubgraphEndpointGenerator.cs
│ │ │ ├── DotEndpointGenerator.cs
│ │ │ └── DotEndpointGroupGenerator.cs
│ │ ├── Graphs
│ │ │ ├── Attributes
│ │ │ │ ├── DotGlobalGraphAttributeStatementsGenerator.cs
│ │ │ │ └── DotGlobalGraphAttributesGenerator.cs
│ │ │ ├── DotCommonGraphGenerator.cs
│ │ │ ├── DotGraphGenerator.cs
│ │ │ ├── DotGraphGeneratorBuilder.cs
│ │ │ ├── DotGraphSectionGenerator.Generic.cs
│ │ │ ├── DotGraphSectionGenerator.cs
│ │ │ └── IDotGraphGeneratorBuilder.cs
│ │ ├── IDotEntityGenerator.Generic.cs
│ │ ├── IDotEntityGenerator.cs
│ │ ├── Nodes
│ │ │ ├── Attributes
│ │ │ │ └── DotGlobalNodeAttributesGenerator.cs
│ │ │ ├── DotNodeCollectionGenerator.cs
│ │ │ ├── DotNodeGenerator.Generic.cs
│ │ │ ├── DotNodeGenerator.cs
│ │ │ └── DotNodeGroupGenerator.cs
│ │ ├── Providers
│ │ │ ├── DotEntityGeneratorsProvider.cs
│ │ │ ├── DotEntityGeneratorsProviderBuilder.cs
│ │ │ ├── IDotEntityGeneratorsProvider.cs
│ │ │ └── IDotEntityGeneratorsProviderBuilder.cs
│ │ └── Subgraphs
│ │ │ ├── DotCommonSubgraphGenerator.cs
│ │ │ ├── DotSubgraphCollectionGenerator.cs
│ │ │ ├── DotSubgraphGenerator.cs
│ │ │ └── DotSubgraphSectionGenerator.cs
│ ├── Metadata
│ │ ├── DotAttributeKeyAttribute.cs
│ │ ├── DotAttributeKeys.cs
│ │ ├── DotAttributeMetadata.cs
│ │ ├── DotAttributeMetadataAttribute.cs
│ │ ├── DotAttributePropertyMetadata.cs
│ │ ├── DotAttributeValue.Generic.cs
│ │ ├── DotAttributeValue.cs
│ │ ├── DotAttributeValueAttribute.cs
│ │ ├── DotCompatibleElements.cs
│ │ ├── DotCompatibleLayoutEngines.cs
│ │ ├── DotCompatibleOutputs.cs
│ │ ├── DotJoinableTypeAttribute.cs
│ │ ├── Html
│ │ │ ├── DotHtmlAttributeValue.cs
│ │ │ ├── DotHtmlAttributeValueAttribute.cs
│ │ │ └── DotHtmlJoinableTypeAttribute.cs
│ │ ├── IDotAttributeValueAttribute.cs
│ │ └── IDotJoinableTypeAttribute.cs
│ ├── Options
│ │ ├── DotClusterDiscriminators.cs
│ │ ├── DotFormattingOptions.Clusters.cs
│ │ ├── DotFormattingOptions.Edges.cs
│ │ ├── DotFormattingOptions.GlobalAttributes.cs
│ │ ├── DotFormattingOptions.Nodes.cs
│ │ ├── DotFormattingOptions.Subgraphs.cs
│ │ ├── DotFormattingOptions.cs
│ │ ├── DotSyntaxOptions.AttributeOptions.cs
│ │ ├── DotSyntaxOptions.ClusterOptions.cs
│ │ ├── DotSyntaxOptions.ColorOptions.cs
│ │ ├── DotSyntaxOptions.CommentOptions.cs
│ │ ├── DotSyntaxOptions.EdgeOptions.cs
│ │ ├── DotSyntaxOptions.GraphOptions.cs
│ │ ├── DotSyntaxOptions.HtmlOptions.cs
│ │ ├── DotSyntaxOptions.SubgraphOptions.cs
│ │ ├── DotSyntaxOptions.cs
│ │ ├── DotSyntaxRules.Attributes.cs
│ │ ├── DotSyntaxRules.Html.cs
│ │ ├── DotSyntaxRules.cs
│ │ ├── DotTextCase.cs
│ │ └── DotTokenType.cs
│ ├── Qualities
│ │ ├── IDotAnnotatable.cs
│ │ ├── IDotEncodable.cs
│ │ ├── IDotEscapable.cs
│ │ ├── IDotHtmlEncodable.cs
│ │ └── IDotOrderable.cs
│ ├── Text
│ │ ├── DotNewLine.cs
│ │ ├── DotTextCasing.cs
│ │ └── Escaping
│ │ │ ├── DotAngleBracketsEscaper.cs
│ │ │ ├── DotBackslashEscaper.cs
│ │ │ ├── DotCarriageReturnEscaper.cs
│ │ │ ├── DotCurlyBracketsEscaper.cs
│ │ │ ├── DotQuotationMarkEscaper.cs
│ │ │ ├── DotSpaceEscaper.cs
│ │ │ ├── DotSpacePaddingEscaper.cs
│ │ │ ├── DotSystemDefaultNewLineEscaper.cs
│ │ │ ├── DotUnixNewLineEscaper.cs
│ │ │ ├── DotVerticalBarEscaper.cs
│ │ │ ├── DotWindowsNewLineEscaper.cs
│ │ │ ├── Html
│ │ │ ├── DotHtmlEncodeEscaper.cs
│ │ │ ├── DotSpaceHtmlEscaper.cs
│ │ │ └── DotTrailingBackslashHtmlEscaper.cs
│ │ │ ├── IDotTextEscaper.cs
│ │ │ └── Pipelines
│ │ │ ├── DotTextEscapingPipeline.Html.cs
│ │ │ ├── DotTextEscapingPipeline.Record.cs
│ │ │ └── DotTextEscapingPipeline.cs
│ └── Writers
│ │ ├── Attributes
│ │ ├── DotAttributeListItemWriter.cs
│ │ ├── DotAttributeWriter.cs
│ │ ├── DotGlobalEntityAttributesStatementWriter.cs
│ │ ├── IDotAttributeListItemWriter.cs
│ │ ├── IDotAttributeWriter.cs
│ │ └── IDotGlobalEntityAttributesStatementWriter.cs
│ │ ├── Clusters
│ │ └── DotClusterWriterRoot.cs
│ │ ├── Comments
│ │ ├── DotCommentWriter.cs
│ │ └── IDotCommentWriter.cs
│ │ ├── DotEntityStatementWriter.cs
│ │ ├── DotEntityWithAttributeListWriter.cs
│ │ ├── DotEntityWriter.cs
│ │ ├── DotEntityWriterConfiguration.cs
│ │ ├── DotPaddedEntityWriter.cs
│ │ ├── Edges
│ │ ├── Attributes
│ │ │ ├── DotGlobalEdgeAttributesWriter.cs
│ │ │ └── IDotGlobalEdgeAttributesWriter.cs
│ │ ├── DotEdgeStatementWriter.cs
│ │ ├── DotEdgeWriter.cs
│ │ ├── DotEndpointGroupWriter.cs
│ │ ├── DotEndpointWriter.cs
│ │ ├── IDotEdgeStatementWriter.cs
│ │ ├── IDotEdgeWriter.cs
│ │ ├── IDotEndpointGroupWriter.cs
│ │ └── IDotEndpointWriter.cs
│ │ ├── Graphs
│ │ ├── Attributes
│ │ │ ├── DotGlobalGraphAttributeStatementWriter.cs
│ │ │ ├── DotGlobalGraphAttributesWriter.cs
│ │ │ ├── IDotGlobalGraphAttributeStatementWriter.cs
│ │ │ └── IDotGlobalGraphAttributesWriter.cs
│ │ ├── DotGraphBlockWriter.cs
│ │ ├── DotGraphBodyWriter.cs
│ │ ├── DotGraphWriter.cs
│ │ ├── DotGraphWriterRoot.cs
│ │ ├── IDotCommonGraphWriter.cs
│ │ ├── IDotGraphBodyWriter.cs
│ │ ├── IDotGraphWriter.cs
│ │ └── IDotGraphWriterRoot.cs
│ │ ├── IDotEntityWithAttributeListWriter.cs
│ │ ├── IDotEntityWriter.cs
│ │ ├── Nodes
│ │ ├── Attributes
│ │ │ ├── DotGlobalNodeAttributesWriter.cs
│ │ │ └── IDotGlobalNodeAttributesWriter.cs
│ │ ├── DotNodeStatementWriter.cs
│ │ ├── DotNodeWriter.cs
│ │ ├── IDotNodeStatementWriter.cs
│ │ └── IDotNodeWriter.cs
│ │ ├── Options
│ │ ├── DotTokenWriterOptions.cs
│ │ └── DotTokenWriterOptionsExtension.cs
│ │ ├── Subgraphs
│ │ ├── DotSubgraphWriter.cs
│ │ ├── DotSubgraphWriterRoot.cs
│ │ ├── IDotSubgraphWriter.cs
│ │ └── IDotSubgraphWriterRoot.cs
│ │ └── TokenWriter
│ │ ├── DotAppendTokenEventArgs.cs
│ │ └── DotTokenWriter.cs
│ ├── Shim
│ └── System
│ │ ├── Diagnostics
│ │ └── CodeAnalysis
│ │ │ ├── MaybeNullWhenAttribute.cs
│ │ │ └── NotNullIfNotNullAttribute.cs
│ │ └── Runtime
│ │ └── CompilerServices
│ │ └── IsExternalInit.cs
│ └── Types
│ ├── Alignment
│ ├── DotAlignment.cs
│ ├── DotAlignmentOptions.cs
│ ├── DotHorizontalAlignment.cs
│ └── DotVerticalAlignment.cs
│ ├── Clusters
│ ├── DotClusterId.cs
│ ├── DotClusterVisualizationMode.cs
│ └── Style
│ │ └── DotClusterFillStyle.cs
│ ├── Colors
│ ├── DotColor.cs
│ ├── DotColorDefinition.cs
│ ├── DotColorSchemes.cs
│ ├── DotGradientColor.cs
│ ├── DotMulticolor.cs
│ └── DotWeightedColor.cs
│ ├── Edges
│ ├── Arrowheads
│ │ ├── DotArrowhead.cs
│ │ ├── DotArrowheadDefinition.cs
│ │ ├── DotArrowheadParts.cs
│ │ ├── DotArrowheadShape.cs
│ │ └── DotCompositeArrowhead.cs
│ ├── DotCompassPoint.cs
│ ├── DotEdgeDirections.cs
│ ├── DotEndpointPort.cs
│ └── Layout
│ │ └── DotEdgeOrderingMode.cs
│ ├── Encoders
│ └── DotDoubleListEncoder.cs
│ ├── EnumHelpers
│ ├── DotEnumHelper.cs
│ └── DotPartialEnumMapper.cs
│ ├── EscapeString
│ ├── DotConcatenatedEscapeString.cs
│ ├── DotEscapeString.EscapeSequences.cs
│ ├── DotEscapeString.Helpers.cs
│ ├── DotEscapeString.cs
│ ├── DotEscapedString.cs
│ ├── DotFormattedTextBuilder.cs
│ └── DotUnescapedString.cs
│ ├── Fonts
│ ├── DotFont.cs
│ ├── DotFontConvention.cs
│ ├── DotFontStyles.cs
│ └── DotStyledFont.cs
│ ├── Geometry
│ ├── DotPoint.cs
│ ├── DotPolygon.cs
│ ├── DotRectangle.cs
│ ├── DotSize.cs
│ ├── DotSizing.cs
│ └── DotTransform.cs
│ ├── Graphs
│ ├── Canvas
│ │ ├── DotOrientation.cs
│ │ ├── Scaling
│ │ │ ├── DotGraphAspectRatio.cs
│ │ │ ├── DotGraphScaling.cs
│ │ │ ├── DotGraphScalingDefinition.cs
│ │ │ └── DotGraphScalingMode.cs
│ │ └── Viewport
│ │ │ ├── DotNodeCenteredViewport.cs
│ │ │ ├── DotPointCenteredViewport.cs
│ │ │ └── DotViewport.cs
│ ├── Charset
│ │ └── DotCharsets.cs
│ ├── Font
│ │ └── DotGraphFont.cs
│ └── Layout
│ │ ├── DotEdgeShape.cs
│ │ ├── DotLayoutDirection.cs
│ │ ├── DotLayoutEngines.cs
│ │ ├── DotOutputOrder.cs
│ │ ├── Packing
│ │ ├── DotArrayPackingMode.cs
│ │ ├── DotArrayPackingOptions.cs
│ │ ├── DotGranularityPackingMode.cs
│ │ ├── DotPackingDefinition.cs
│ │ ├── DotPackingEnabled.cs
│ │ ├── DotPackingGranularity.cs
│ │ ├── DotPackingMargin.cs
│ │ └── DotPackingModeDefinition.cs
│ │ └── Spacing
│ │ ├── DotRadialRankSeparation.cs
│ │ ├── DotRank.cs
│ │ ├── DotRankSeparation.cs
│ │ └── DotRankSeparationDefinition.cs
│ ├── Html
│ ├── DotHtmlString.cs
│ └── Table
│ │ ├── DotHtmlTableBorders.cs
│ │ ├── DotHtmlTableCellAlignmentOptions.cs
│ │ ├── DotHtmlTableCellHorizontalAlignment.cs
│ │ ├── DotHtmlTableColumnFormat.cs
│ │ ├── DotHtmlTableCornerStyle.cs
│ │ ├── DotHtmlTableFillStyle.cs
│ │ ├── DotHtmlTableRowFormat.cs
│ │ └── DotHtmlTableStyles.cs
│ ├── Hyperlinks
│ ├── DotHyperlink.cs
│ └── DotHyperlinkTargets.cs
│ ├── Identifiers
│ └── DotId.cs
│ ├── Images
│ ├── DotImage.cs
│ └── DotImageScaling.cs
│ ├── Nodes
│ ├── DotNodeShape.cs
│ └── Style
│ │ └── DotNodeFillStyle.cs
│ ├── Records
│ ├── DotRecord.cs
│ ├── DotRecordBuilder.AppendField.cs
│ ├── DotRecordBuilder.AppendFields.cs
│ ├── DotRecordBuilder.AppendSubrecord.cs
│ ├── DotRecordBuilder.AppendUnflippedRecord.cs
│ ├── DotRecordBuilder.cs
│ ├── DotRecordField.cs
│ └── DotRecordTextField.cs
│ ├── Styling
│ ├── DotBorderStyle.cs
│ ├── DotBorderWeight.cs
│ ├── DotCornerStyle.cs
│ ├── DotFillStyle.cs
│ ├── DotLineStyle.cs
│ ├── DotLineWeight.cs
│ └── DotStyles.cs
│ └── TypeHelper.cs
├── supported_attributes_map.txt
└── test
├── GiGraph.Dot.Entities.Tests
├── Attributes
│ ├── DotAttributeEncodingTest.cs
│ ├── DotAttributeKeyAssociationTest.cs
│ ├── DotAttributeMetadataTest.cs
│ ├── DotAttributePropertiesTest.cs
│ ├── DotAttributeSupportPerElementTest.cs
│ ├── DotIdAttributeTest.cs
│ ├── DotStringAttributeTest.cs
│ ├── Factories
│ │ └── DotElementAttributesMetadataFactory.cs
│ ├── GraphvizDocumentation
│ │ ├── Graphviz.html
│ │ └── GraphvizAttributeListDiffTest.cs
│ ├── Helpers
│ │ └── DotPropertyTreeFactory.cs
│ ├── Setters
│ │ ├── DotEdgeStyleAttributesTest.cs
│ │ ├── DotFontAttributesTest.cs
│ │ ├── DotGraphCanvasViewportAttributeTest.cs
│ │ ├── DotGraphClusterLabelOptionsAttributesTest.cs
│ │ ├── DotGraphFontAttributesTest.cs
│ │ ├── DotGraphSvgStyleSheetAttributesTest.cs
│ │ ├── DotNodeGeometryAttributesTest.cs
│ │ ├── DotNodeImageAttributesTest.cs
│ │ ├── DotNodeSizeAttributesTest.cs
│ │ └── DotNodeTransformAttributesTest.cs
│ └── __snapshots__
│ │ ├── attribute_metadata_map.snap
│ │ ├── attribute_property_key_map.snap
│ │ ├── cluster_id_attribute.gv.snap
│ │ ├── graph_with_all_attributes_on_all_elements.snap
│ │ └── root_node_id_attribute.gv.snap
├── Clusters
│ ├── DotClusterAttributeTest.cs
│ ├── DotClusterStyleAttributeOptionsTest.cs
│ └── __snapshots__
│ │ ├── cluster_with_cluster_attribute_as_discriminator.snap
│ │ ├── cluster_with_cluster_attribute_as_discriminator_and_cluster_attribute_false.snap
│ │ ├── cluster_with_cluster_id_prefix_and_cluster_attribute_as_discriminators.snap
│ │ ├── cluster_with_cluster_id_prefix_as_discriminator.snap
│ │ ├── cluster_with_cluster_id_prefix_as_discriminator_and_cluster_attribute_false.snap
│ │ ├── id_reference_to_cluster_with_cluster_attribute_as_discriminator.snap
│ │ ├── id_reference_to_cluster_with_cluster_idprefix_as_discriminator.snap
│ │ ├── id_reference_to_cluster_with_cluster_idprefixandattribute_as_discriminator.snap
│ │ └── styled_cluster.snap
├── Edges
│ ├── DotEdgeEndpointArrowheadSettersTest.cs
│ ├── DotEdgeEndpointPortSettersTest.cs
│ ├── DotEdgeHyperlinkTest.cs
│ ├── DotEdgeStyleAttributeOptionsTest.cs
│ ├── DotEdgeTest.cs
│ └── __snapshots__
│ │ ├── edge_endpoints_arrowheads.snap
│ │ ├── edge_endpoints_ports.snap
│ │ ├── edge_head_and_tail_attributes.snap
│ │ ├── edge_head_port_variants.snap
│ │ ├── graph_with_record_node_from_builder.snap
│ │ └── styled_edge.snap
├── Endpoints
│ └── DotEndpointTest.cs
├── GiGraph.Dot.Entities.Tests.csproj
├── GraphSections
│ ├── DotGraphStyleAttributeOptionsTest.cs
│ ├── DotGraphStyleAttributesExtensionTest.cs
│ └── __snapshots__
│ │ ├── gradient_graph_background.snap
│ │ ├── plain_graph_background.snap
│ │ ├── radial_gradient_graph_background.snap
│ │ └── styled_graph.snap
├── Html
│ ├── Builder
│ │ ├── DotHtmlBuilderTest.cs
│ │ └── __snapshots__
│ │ │ ├── html_from_builder.snap
│ │ │ └── html_from_nested_builder.snap
│ ├── DotHtmlAttributeValueEscapingTest.cs
│ ├── DotHtmlCommentTest.cs
│ ├── DotHtmlEntitiesTest.cs
│ ├── DotHtmlEntityCollectionTest.cs
│ ├── DotHtmlFontTest.cs
│ ├── DotHtmlImageTest.cs
│ ├── DotHtmlLineBreakTest.cs
│ ├── DotHtmlTest.cs
│ ├── DotHtmlTextTest.cs
│ ├── DotHtmlVoidElementTest.cs
│ ├── FontStyles
│ │ ├── DotHtmlFontStyleTest.EntityHelpers.cs
│ │ ├── DotHtmlFontStyleTest.TextHelpers.cs
│ │ ├── DotHtmlFontStyleTest.cs
│ │ ├── DotHtmlFontTest.EntityHelpers.cs
│ │ ├── DotHtmlFontTest.TextHelpers.cs
│ │ ├── DotHtmlFontTest.cs
│ │ └── __snapshots__
│ │ │ ├── html_bold_text.snap
│ │ │ ├── html_entity_styling_bold.snap
│ │ │ ├── html_entity_styling_normal.snap
│ │ │ ├── html_font.snap
│ │ │ ├── html_font_arial_20_blue.snap
│ │ │ ├── html_font_arial_20_blue_overline_subscript.snap
│ │ │ ├── html_font_with_attributes_and_entity.snap
│ │ │ ├── html_font_with_no_attributes.snap
│ │ │ ├── html_font_without_attributes_with_entity.snap
│ │ │ ├── html_italic_text.snap
│ │ │ ├── html_overline_text.snap
│ │ │ ├── html_strikethrough_text.snap
│ │ │ ├── html_styled_font_with_attributes_and_entity.snap
│ │ │ ├── html_styled_font_without_attributes_with_entity.snap
│ │ │ ├── html_subscript_text.snap
│ │ │ ├── html_superscript_text.snap
│ │ │ ├── html_text_styling_all_tags_text.snap
│ │ │ ├── html_text_styling_bold_centered_line.snap
│ │ │ ├── html_text_styling_bold_italic_text.snap
│ │ │ ├── html_text_styling_bold_text.snap
│ │ │ ├── html_text_styling_normal_text.snap
│ │ │ └── html_underlined_text.snap
│ ├── Rules
│ │ ├── DotHtmlRulesTest.cs
│ │ └── __snapshots__
│ │ │ ├── html_horizontal_rule.snap
│ │ │ └── html_vertical_rule.snap
│ ├── Table
│ │ ├── DotHtmlTableAlignmentTest.cs
│ │ ├── DotHtmlTableCellAlignmentTest.cs
│ │ ├── DotHtmlTableCellSpanTest.cs
│ │ ├── DotHtmlTableCellTest.cs
│ │ ├── DotHtmlTableFormatTest.cs
│ │ ├── DotHtmlTableHyperlinkTest.cs
│ │ ├── DotHtmlTableRowTest.cs
│ │ ├── DotHtmlTableSizeTest.cs
│ │ ├── DotHtmlTableStyleAttributeOptionsTest.cs
│ │ ├── DotHtmlTableTest.cs
│ │ └── __snapshots__
│ │ │ ├── html_table.snap
│ │ │ ├── html_table_cell.snap
│ │ │ ├── html_table_row.snap
│ │ │ └── html_table_with_rows.snap
│ └── __snapshots__
│ │ ├── html_attribute_escape_string_value.snap
│ │ ├── html_attribute_raw_string_value.snap
│ │ ├── html_attribute_string_value.snap
│ │ ├── html_comment.snap
│ │ ├── html_element.snap
│ │ ├── html_element_upper_case_name.snap
│ │ ├── html_empty_element.snap
│ │ ├── html_entity_collection.snap
│ │ ├── html_escaped_text.snap
│ │ ├── html_image.snap
│ │ ├── html_line_break.snap
│ │ ├── html_line_break_right-aligned.snap
│ │ ├── html_multiline_right-aligned_text.snap
│ │ ├── html_multiline_text.snap
│ │ ├── html_single-line_text.snap
│ │ ├── html_void_tag.snap
│ │ ├── html_void_tag_upper_case_attributes.snap
│ │ └── html_void_tag_upper_case_name.snap
├── Ids
│ └── DotIdTest.cs
├── Labels
│ ├── DotHtmlLabelTest.cs
│ ├── DotLabelTest.cs
│ └── DotTextLabelTest.cs
├── Nodes
│ ├── DotNodeHtmlExtensionTest.cs
│ ├── DotNodeRecordExtensionTest.cs
│ ├── DotNodeRoundedRecordExtensionTest.cs
│ ├── DotNodeStyleAttributeOptionsTest.cs
│ └── __snapshots__
│ │ ├── graph_with_plain_html_node_from_html_entity.snap
│ │ ├── graph_with_plain_html_node_from_html_entity_builder.snap
│ │ ├── graph_with_plain_html_node_from_html_string.snap
│ │ ├── graph_with_plain_html_node_from_table.snap
│ │ ├── graph_with_plain_html_node_from_table_builder.snap
│ │ ├── graph_with_record_node.snap
│ │ ├── graph_with_record_node_from_builder.snap
│ │ ├── graph_with_rounded_record_node.snap
│ │ ├── graph_with_rounded_record_node_from_builder.snap
│ │ └── styled_node.snap
└── Qualities
│ ├── DotFillableExtensionTest.GradientFill.Clusters.cs
│ ├── DotFillableExtensionTest.GradientFill.Nodes.cs
│ ├── DotFillableExtensionTest.PlainColorFill.Clusters.cs
│ ├── DotFillableExtensionTest.PlainColorFill.Nodes.cs
│ ├── DotFillableExtensionTest.RadialGradientFill.Clusters.cs
│ ├── DotFillableExtensionTest.RadialGradientFill.Nodes.cs
│ ├── DotHasBorderStyleAttributesExtensionTest.cs
│ ├── DotHasFontAttributesExtensionTest.cs
│ ├── DotHasHtmlTableBordersExtensionTest.cs
│ ├── DotHasHyperlinkAttributesExtensionTest.cs
│ ├── DotHasLineStyleAttributesExtensionTest.cs
│ ├── DotHasStyleOptionsExtensionTest.cs
│ ├── DotShapableNodeExtensionTest.cs
│ ├── DotStripeFillableExtensionTest.Clusters.cs
│ ├── DotStripeFillableExtensionTest.Nodes.cs
│ ├── DotStylableEdgeExtensionTest.MultilineStyle.cs
│ ├── DotStylableEdgeExtensionTest.SegmentedStyle.cs
│ ├── DotStylableEdgeExtensionTest.TaperedStyle.cs
│ ├── DotWedgeableExtensionTest.cs
│ └── __snapshots__
│ ├── gradient_fill_on_cluster_collection.snap
│ ├── gradient_fill_on_cluster_collection_with_angle.snap
│ ├── gradient_fill_on_clusters.snap
│ ├── gradient_fill_on_clusters_with_other_styles_set.snap
│ ├── gradient_fill_on_node_collection.snap
│ ├── gradient_fill_on_node_collection_with_angle.snap
│ ├── gradient_fill_on_node_groups.snap
│ ├── gradient_fill_on_nodes.snap
│ ├── gradient_fill_on_nodes_with_other_styles_set.snap
│ ├── multiline_edge_collections.snap
│ ├── multiline_edges.snap
│ ├── plain_color_fill_on_cluster.snap
│ ├── plain_color_fill_on_cluster_collection.snap
│ ├── plain_color_fill_on_node.snap
│ ├── plain_color_fill_on_node_collection.snap
│ ├── plain_color_fill_on_node_group.snap
│ ├── polygonal_nodes.snap
│ ├── radial_gradient_fill_on_cluster_collection.snap
│ ├── radial_gradient_fill_on_cluster_collection_with_angle.snap
│ ├── radial_gradient_fill_on_clusters.snap
│ ├── radial_gradient_fill_on_node_collection.snap
│ ├── radial_gradient_fill_on_node_collection_with_angle.snap
│ ├── radial_gradient_fill_on_node_groups.snap
│ ├── radial_gradient_fill_on_nodes.snap
│ ├── segmented_edge_collections.snap
│ ├── segmented_edges.snap
│ ├── striped_fill_on_cluster_collection_multicolor.snap
│ ├── striped_fill_on_cluster_collection_params.snap
│ ├── striped_fill_on_individual_clusters.snap
│ ├── striped_fill_on_individual_node_groups.snap
│ ├── striped_fill_on_individual_nodes.snap
│ ├── striped_fill_on_node_collection_multicolor.snap
│ ├── striped_fill_on_node_collection_params.snap
│ ├── tapered_edge_and_edge_collection.snap
│ ├── wedged_fill_on_individual_node_groups.snap
│ ├── wedged_fill_on_individual_nodes.snap
│ ├── wedged_fill_on_node_collection_multicolor.snap
│ └── wedged_fill_on_node_collection_params.snap
├── GiGraph.Dot.Output.Tests
├── DotEnumMetadataTest.cs
├── DotGraphFactory.cs
├── DotGraphFormattingOptionsTest.cs
├── DotGraphOutputTest.cs
├── DotGraphSaveToFileTest.cs
├── DotGraphSaveToStreamTest.cs
├── DotGraphSaveToTextWriterTest.cs
├── DotGraphSyntaxOptionsTest.GraphAttributesAsStatements.cs
├── DotGraphSyntaxOptionsTest.cs
├── EntityPadding
│ ├── DotEdgeWithMultilineAttributesTest.cs
│ ├── DotEdgeWithSubgraphEndpointsTest.cs
│ ├── DotGraphWithCommentedAttributesTest.cs
│ ├── DotGraphWithMultilineGlobalAttributesTest.cs
│ ├── DotNodeWithMultilineAttributesTest.cs
│ └── __snapshots__
│ │ ├── commented_graph_attribute_with_bottom_padding.gv.snap
│ │ ├── commented_graph_attribute_with_bottom_padding_single_line.gv.snap
│ │ ├── commented_graph_attribute_with_top_and_bottom_padding.gv.snap
│ │ ├── commented_graph_attribute_with_top_and_bottom_padding_single_line.gv.snap
│ │ ├── commented_graph_attribute_with_top_padding.gv.snap
│ │ ├── commented_graph_attribute_with_top_padding_single_line.gv.snap
│ │ ├── commented_graph_attribute_without_padding.gv.snap
│ │ ├── commented_graph_attribute_without_padding_single_line.gv.snap
│ │ ├── edge_with_attributes_with_bottom_padding.gv.snap
│ │ ├── edge_with_attributes_with_bottom_padding_single_line.gv.snap
│ │ ├── edge_with_attributes_with_top_padding.gv.snap
│ │ ├── edge_with_attributes_with_top_padding_single_line.gv.snap
│ │ ├── edge_with_bottom_padding.gv.snap
│ │ ├── edge_with_bottom_padding_single_line.gv.snap
│ │ ├── edge_with_top_padding.gv.snap
│ │ ├── edge_with_top_padding_single_line.gv.snap
│ │ ├── edges_with_attributes_with_padding.gv.snap
│ │ ├── edges_with_attributes_with_padding_single_line.gv.snap
│ │ ├── edges_with_padding.gv.snap
│ │ ├── edges_with_padding_single_line.gv.snap
│ │ ├── edges_without_attributes_without_padding.gv.snap
│ │ ├── edges_without_attributes_without_padding_single_line.gv.snap
│ │ ├── edges_without_padding.gv.snap
│ │ ├── edges_without_padding_single_line.gv.snap
│ │ ├── graph_with_multiline_global_attribute_lists.gv.snap
│ │ ├── graph_with_multiline_global_attribute_lists_single_line.gv.snap
│ │ ├── graph_with_multiline_global_edge_attribute_list.gv.snap
│ │ ├── graph_with_multiline_global_edge_attribute_list_single_line.gv.snap
│ │ ├── graph_with_multiline_global_graph_attribute_list.gv.snap
│ │ ├── graph_with_multiline_global_graph_attribute_list_single_line.gv.snap
│ │ ├── graph_with_multiline_global_node_attribute_list.gv.snap
│ │ ├── graph_with_multiline_global_node_attribute_list_single_line.gv.snap
│ │ ├── graph_with_single_line_global_graph_attribute_list.gv.snap
│ │ ├── graph_with_single_line_global_graph_attribute_list_single_line.gv.snap
│ │ ├── node_with_attributes_with_bottom_padding.gv.snap
│ │ ├── node_with_attributes_with_bottom_padding_single_line.gv.snap
│ │ ├── node_with_attributes_with_top_padding.gv.snap
│ │ ├── node_with_attributes_with_top_padding_single_line.gv.snap
│ │ ├── nodes_with_attributes_with_padding.gv.snap
│ │ ├── nodes_with_attributes_with_padding_single_line.gv.snap
│ │ ├── nodes_without_attributes_without_padding.gv.snap
│ │ ├── nodes_without_attributes_without_padding_single_line.gv.snap
│ │ ├── single_edge_with_multiline_attributes_without_padding.gv.snap
│ │ ├── single_edge_with_multiline_attributes_without_padding_single_line.gv.snap
│ │ ├── single_edge_without_attributes_without_padding.gv.snap
│ │ ├── single_edge_without_attributes_without_padding_single_line.gv.snap
│ │ ├── single_edge_without_padding.gv.snap
│ │ ├── single_edge_without_padding_single_line.gv.snap
│ │ ├── single_node_with_multiline_attributes_without_padding.gv.snap
│ │ ├── single_node_with_multiline_attributes_without_padding_single_line.gv.snap
│ │ ├── single_node_without_attributes_without_padding.gv.snap
│ │ └── single_node_without_attributes_without_padding_single_line.gv.snap
├── GiGraph.Dot.Output.Tests.csproj
├── Helpers
│ ├── EncodingHelper.cs
│ └── StreamWrapper.cs
└── __snapshots__
│ ├── annotated_graph_block_comments.gv.snap
│ ├── annotated_graph_default_options.gv.snap
│ ├── annotated_graph_default_options_single_line.gv.snap
│ ├── annotated_graph_hash_comments.gv.snap
│ ├── annotated_graph_multiline_attributes.gv.snap
│ ├── directed_empty_graph_single_line.gv.snap
│ ├── directed_graph_attributes_separator_quoted_key_quoted_value_graph_attributes_single_statement.gv.snap
│ ├── directed_graph_default_options.gv.snap
│ ├── directed_graph_edge.gv.snap
│ ├── directed_graph_quoted_identifiers.gv.snap
│ ├── directed_graph_sorted.gv.snap
│ ├── directed_sectioned_graph_default_options.gv.snap
│ ├── empty_graph_default_options.gv.snap
│ ├── graph_attributes_as_list.gv.snap
│ ├── graph_attributes_as_statements.gv.snap
│ ├── graph_attributes_in_cluster_as_list.gv.snap
│ ├── graph_attributes_in_cluster_as_statements.gv.snap
│ ├── graph_attributes_in_subgraph_as_list.gv.snap
│ ├── graph_attributes_in_subgraph_as_statements.gv.snap
│ ├── graph_with_colors_as_hex.gv.snap
│ ├── graph_with_custom_indentation_and_line_break.gv.snap
│ ├── graph_with_custom_text_encoder.gv.snap
│ ├── graph_with_custom_text_encoder_tokens.gv.snap
│ ├── graph_with_escaped_identifiers.gv.snap
│ ├── graph_with_explicitly_declared_subgraphs.gv.snap
│ ├── graph_with_html_attribute.gv.snap
│ ├── graph_with_multiline_edge_subgraphs.gv.snap
│ ├── graph_with_multiline_edge_subgraphs_and_attributes.gv.snap
│ ├── graph_with_multiline_edge_subgraphs_and_multiline_attributes.gv.snap
│ ├── graph_with_single_line_clusters.gv.snap
│ ├── graph_with_single_line_subgraphs.gv.snap
│ ├── graph_with_statement_delimiters.gv.snap
│ ├── strict_directed_graph.gv.snap
│ ├── undirected_graph_custom_cluster_id_separator.gv.snap
│ └── undirected_graph_edge.gv.snap
└── GiGraph.Dot.Types.Tests
├── DotColorTest.cs
├── Enums
├── DotAlignmentEnumsTest.cs
├── DotEnumAttributeValueKeyTest.cs
└── DotEnumsTest.cs
├── EscapeString
├── DotConcatenatedEscapeStringConcatenationTest.cs
├── DotEscapeStringConcatenationTest.cs
├── DotEscapeStringTest.cs
├── DotEscapedStringTest.cs
├── DotFormattedTextBuilderTest.cs
├── DotUnescapeStringTest.cs
└── __snapshots__
│ ├── formatted_text_builder_build_output.snap
│ └── formatted_text_builder_tostring_output.snap
├── GiGraph.Dot.Types.Tests.csproj
├── Html
└── DotHtmlStringTest.cs
└── Records
├── DotRecordBuilderTest.cs
├── DotRecordTest.cs
└── __snapshots__
├── record_builder_output_with_fields_and_subrecords.snap
└── record_builder_output_with_fields_and_unflipped_subrecords.snap
/.github/workflows/build_and_test.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/.github/workflows/build_and_test.yaml
--------------------------------------------------------------------------------
/.github/workflows/publish.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/.github/workflows/publish.yaml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/.gitignore
--------------------------------------------------------------------------------
/Directory.Build.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/Directory.Build.props
--------------------------------------------------------------------------------
/Directory.Packages.props:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/Directory.Packages.props
--------------------------------------------------------------------------------
/GiGraph.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/GiGraph.sln
--------------------------------------------------------------------------------
/GiGraph.sln.DotSettings:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/GiGraph.sln.DotSettings
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/README.md
--------------------------------------------------------------------------------
/assets/Synthetic_Biology_Open_Language_(SBOL)_standard_visual_symbols.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/Synthetic_Biology_Open_Language_(SBOL)_standard_visual_symbols.png
--------------------------------------------------------------------------------
/assets/examples/arrowheads.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/arrowheads.svg
--------------------------------------------------------------------------------
/assets/examples/cluster-edge-clipping.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/cluster-edge-clipping.svg
--------------------------------------------------------------------------------
/assets/examples/clusters.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/clusters.svg
--------------------------------------------------------------------------------
/assets/examples/complex-graph-with-subgraphs.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/complex-graph-with-subgraphs.svg
--------------------------------------------------------------------------------
/assets/examples/complex-graph.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/complex-graph.svg
--------------------------------------------------------------------------------
/assets/examples/custom-styling.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/custom-styling.svg
--------------------------------------------------------------------------------
/assets/examples/default-attributes.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/default-attributes.svg
--------------------------------------------------------------------------------
/assets/examples/edge-compass-point.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-compass-point.svg
--------------------------------------------------------------------------------
/assets/examples/edge-many-to-many-with-attrs.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-many-to-many-with-attrs.svg
--------------------------------------------------------------------------------
/assets/examples/edge-many-to-many.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-many-to-many.svg
--------------------------------------------------------------------------------
/assets/examples/edge-many-to-one.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-many-to-one.svg
--------------------------------------------------------------------------------
/assets/examples/edge-one-to-many-group.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-one-to-many-group.svg
--------------------------------------------------------------------------------
/assets/examples/edge-one-to-many-subgraph.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-one-to-many-subgraph.svg
--------------------------------------------------------------------------------
/assets/examples/edge-sequence-of-three.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-sequence-of-three.svg
--------------------------------------------------------------------------------
/assets/examples/edge-sequence-with-group-and-attrs.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-sequence-with-group-and-attrs.svg
--------------------------------------------------------------------------------
/assets/examples/edge-sequence-with-group.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/edge-sequence-with-group.svg
--------------------------------------------------------------------------------
/assets/examples/hello-world-directed.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/hello-world-directed.svg
--------------------------------------------------------------------------------
/assets/examples/hello-world-undirected.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/hello-world-undirected.svg
--------------------------------------------------------------------------------
/assets/examples/html-node-with-port.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/html-node-with-port.svg
--------------------------------------------------------------------------------
/assets/examples/html-node.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/html-node.svg
--------------------------------------------------------------------------------
/assets/examples/html-styled-label.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/html-styled-label.svg
--------------------------------------------------------------------------------
/assets/examples/label-identifiers.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/label-identifiers.svg
--------------------------------------------------------------------------------
/assets/examples/label-justification.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/label-justification.svg
--------------------------------------------------------------------------------
/assets/examples/multicolor-edges.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/multicolor-edges.svg
--------------------------------------------------------------------------------
/assets/examples/node-group-of-three.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/node-group-of-three.svg
--------------------------------------------------------------------------------
/assets/examples/node-hexagon-hello-world.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/node-hexagon-hello-world.svg
--------------------------------------------------------------------------------
/assets/examples/record-node-hello-world.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/record-node-hello-world.svg
--------------------------------------------------------------------------------
/assets/examples/record-node-subrecord-with-port.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/record-node-subrecord-with-port.svg
--------------------------------------------------------------------------------
/assets/examples/record-node-subrecord.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/record-node-subrecord.svg
--------------------------------------------------------------------------------
/assets/examples/subsections.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/examples/subsections.svg
--------------------------------------------------------------------------------
/assets/graph.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/graph.svg
--------------------------------------------------------------------------------
/assets/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/icon.ico
--------------------------------------------------------------------------------
/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/icon.png
--------------------------------------------------------------------------------
/assets/jetbrains.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/jetbrains.svg
--------------------------------------------------------------------------------
/assets/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/logo.svg
--------------------------------------------------------------------------------
/assets/social-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/assets/social-preview.png
--------------------------------------------------------------------------------
/src/ADR/01. Extensibility.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/ADR/01. Extensibility.md
--------------------------------------------------------------------------------
/src/ADR/02. Enumerations.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/ADR/02. Enumerations.md
--------------------------------------------------------------------------------
/src/ADR/03. Attribute key mapping.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/ADR/03. Attribute key mapping.md
--------------------------------------------------------------------------------
/src/ADR/04. Attribute property source generator.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/ADR/04. Attribute property source generator.md
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Basic/Annotation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Basic/Annotation.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Basic/Arrowheads.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Basic/Arrowheads.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Basic/HelloWorld.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Basic/HelloWorld.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Basic/LabelJustification.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Basic/LabelJustification.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Basic/LabelPlaceholders.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Basic/LabelPlaceholders.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Basic/RecordNodes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Basic/RecordNodes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Complex/WithClusters.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Complex/WithClusters.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Complex/WithCustomNodeLayout.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Complex/WithCustomNodeLayout.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Complex/WithCustomStyles.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Complex/WithCustomStyles.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Complex/WithSubsections.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Complex/WithSubsections.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Complex/WithSvgCssStylesheet.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Complex/WithSvgCssStylesheet.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Complex/stylesheet.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Complex/stylesheet.css
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/GiGraph.Dot.Examples.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/GiGraph.Dot.Examples.csproj
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Html/HtmlColoredTextNodeFromBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Html/HtmlColoredTextNodeFromBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Html/HtmlStyledEdgeLabel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Html/HtmlStyledEdgeLabel.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Html/HtmlStyledNodeText.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Html/HtmlStyledNodeText.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Html/HtmlTableNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Html/HtmlTableNode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Html/HtmlTableStringNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Html/HtmlTableStringNode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.Examples/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.Examples/Program.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.SourceGenerators/Attributes/AttributePropertyDeclaration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.SourceGenerators/Attributes/AttributePropertyDeclaration.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.SourceGenerators/Attributes/DotAttributePropertiesGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.SourceGenerators/Attributes/DotAttributePropertiesGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.SourceGenerators/Extensions/AccessibilityExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.SourceGenerators/Extensions/AccessibilityExtensions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.SourceGenerators/Extensions/BuildMessageWriterExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.SourceGenerators/Extensions/BuildMessageWriterExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.SourceGenerators/Extensions/SymbolExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.SourceGenerators/Extensions/SymbolExtensions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot.SourceGenerators/GiGraph.Dot.SourceGenerators.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.SourceGenerators/GiGraph.Dot.SourceGenerators.csproj
--------------------------------------------------------------------------------
/src/GiGraph.Dot.SourceGenerators/IsExternalInit.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot.SourceGenerators/IsExternalInit.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Collections/DotAttributeCollection.Getters.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Collections/DotAttributeCollection.Getters.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Collections/DotAttributeCollection.Setters.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Collections/DotAttributeCollection.Setters.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Collections/DotAttributeCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Collections/DotAttributeCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotAttribute.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotAttribute.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotBoolAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotBoolAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotColorAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotColorAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotComplexTypeArrayAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotComplexTypeArrayAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotComplexTypeAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotComplexTypeAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotDoubleArrayAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotDoubleArrayAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotDoubleAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotDoubleAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotEnumAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotEnumAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotEscapeStringAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotEscapeStringAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotIntAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotIntAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotNullAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotNullAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotRawAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotRawAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/DotStringAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/DotStringAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Factories/DotAttributeFactory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Factories/DotAttributeFactory.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Properties/Common/Font/DotFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Properties/Common/Font/DotFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Properties/Common/Font/IDotFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Properties/Common/Font/IDotFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Properties/DotEntityAttributes.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Properties/DotEntityAttributes.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Properties/DotEntityAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Properties/DotEntityAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Properties/DotEntityAttributesWithMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Properties/DotEntityAttributesWithMetadata.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Attributes/Properties/IDotEntityAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Attributes/Properties/IDotEntityAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Attributes/DotClusterLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Attributes/DotClusterLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Attributes/DotClusterRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Attributes/DotClusterRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Attributes/DotClusterStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Attributes/DotClusterStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Attributes/IDotClusterStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Collections/DotClusterCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Collections/DotClusterCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/Collections/DotGraphClusterCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/Collections/DotGraphClusterCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/DotCluster.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/DotCluster.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/DotClusterSection.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/DotClusterSection.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Clusters/DotClusterSection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Clusters/DotClusterSection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeEndpointLabelsAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeEndpointLabelsAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeEndpointLabelsFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeEndpointLabelsFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeHyperlinkAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeHyperlinkAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeLabelHyperlinkAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeLabelHyperlinkAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeLabelOptionsAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeLabelOptionsAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeStyleAttributes.Qualities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeStyleAttributes.Qualities.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/DotEdgeStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeEndpointLabelsAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeEndpointLabelsAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeHyperlinkAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeHyperlinkAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeLabelOptionsAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeLabelOptionsAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Attributes/IDotEdgeStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.Loop.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.Loop.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.ManyToMany.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.ManyToMany.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.ManyToOne.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.ManyToOne.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.OneToMany.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.OneToMany.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.Sequence.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.Sequence.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Collections/DotEdgeCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/DotEdge.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/DotEdge.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/DotEdge.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/DotEdge.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/DotEdgeDefinition.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/DotEdgeDefinition.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/DotEdgeDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/DotEdgeDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/DotEdgeSequence.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/DotEdgeSequence.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/DotEdgeEndpointAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/DotEdgeEndpointAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/DotEdgeHeadAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/DotEdgeHeadAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/DotEdgeTailAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/DotEdgeTailAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/IDotEdgeEndpointAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/Attributes/IDotEdgeEndpointAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotClusterEndpoint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotClusterEndpoint.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEdgeEndpoint.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEdgeEndpoint.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEdgeEndpoint.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEdgeEndpoint.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEdgeEndpoint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEdgeEndpoint.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEndpoint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEndpoint.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEndpointDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEndpointDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEndpointGroup.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotEndpointGroup.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Edges/Endpoints/DotSubgraphEndpoint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Edges/Endpoints/DotSubgraphEndpoint.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphCanvasAttributes.Scaling.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphCanvasAttributes.Scaling.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphCanvasAttributes.Viewport.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphCanvasAttributes.Viewport.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphCanvasAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphCanvasAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphClustersAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphClustersAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphClustersStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphClustersStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphLayoutAttributes.Packing.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphLayoutAttributes.Packing.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphLayoutAttributes.PackingMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphLayoutAttributes.PackingMode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphSvgStyleSheetAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/DotGraphSvgStyleSheetAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphCanvasAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphCanvasAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphClustersAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphClustersAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphClustersRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphClustersRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphClustersStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphClustersStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphSvgStyleSheetAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Attributes/IDotGraphSvgStyleSheetAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Collections/DotCommonGraphCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Collections/DotCommonGraphCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/Collections/DotGraphSectionCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/Collections/DotGraphSectionCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/DotCommonGraphSection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/DotCommonGraphSection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/DotGraph.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/DotGraph.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/DotGraphSection.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/DotGraphSection.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Graphs/DotGraphSection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Graphs/DotGraphSection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Attributes/Collections/DotHtmlAttributeCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Attributes/Collections/DotHtmlAttributeCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlBoolAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlBoolAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlEnumAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlEnumAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlEscapeStringAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlEscapeStringAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlStringAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Attributes/DotHtmlStringAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Attributes/Factories/DotHtmlAttributeFactory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Attributes/Factories/DotHtmlAttributeFactory.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Attributes/Properties/DotHtmlElementAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Attributes/Properties/DotHtmlElementAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Comment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Comment.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Custom.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Custom.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Font.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Font.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.FontStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.FontStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Image.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Image.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Line.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Line.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Rules.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Rules.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.StyledText.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.StyledText.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Table.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Table.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Text.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.Text.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Builder/DotHtmlBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtml.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtml.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlComment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlComment.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlElement.IEnumerable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlElement.IEnumerable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlElement.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlElement.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlEntity.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlEntity.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlEntity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlEntity.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlEntityCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlEntityCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlReadOnlyEntity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlReadOnlyEntity.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlTag.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlTag.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/DotHtmlVoidElement.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/DotHtmlVoidElement.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Attributes/DotHtmlFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Attributes/DotHtmlFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Attributes/IDotHtmlFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Attributes/IDotHtmlFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.EntityHelpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.EntityHelpers.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.TextHelpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.TextHelpers.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/DotHtmlFont.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlBold.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlBold.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlFontStyle.Helpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlFontStyle.Helpers.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlFontStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlFontStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlItalic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlItalic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlOverline.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlOverline.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlStrikethrough.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlStrikethrough.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlSubscript.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlSubscript.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlSuperscript.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlSuperscript.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlUnderline.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Font/Styles/DotHtmlUnderline.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/IDotHtmlContentEntity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/IDotHtmlContentEntity.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/IDotHtmlEntity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/IDotHtmlEntity.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Image/Attributes/DotHtmlImageAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Image/Attributes/DotHtmlImageAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Image/Attributes/IDotHtmlImageAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Image/Attributes/IDotHtmlImageAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Image/DotHtmlImage.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Image/DotHtmlImage.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Image/DotHtmlImage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Image/DotHtmlImage.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/LineBreak/Attributes/DotHtmlLineBreakAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/LineBreak/Attributes/DotHtmlLineBreakAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/LineBreak/Attributes/IDotHtmlLineBreakAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/LineBreak/Attributes/IDotHtmlLineBreakAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/LineBreak/DotHtmlLineBreak.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/LineBreak/DotHtmlLineBreak.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/LineBreak/DotHtmlLineBreak.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/LineBreak/DotHtmlLineBreak.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Rule/DotHtmlHorizontalRule.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Rule/DotHtmlHorizontalRule.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Rule/DotHtmlRule.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Rule/DotHtmlRule.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Rule/DotHtmlVerticalRule.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Rule/DotHtmlVerticalRule.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableAlignmentAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableAlignmentAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableCellAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableCellAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableCellStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableCellStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/DotHtmlTableStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableAlignmentAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableAlignmentAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableCellAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableCellAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableCellStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableCellStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/Attributes/IDotHtmlTableStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTable.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTable.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableCell.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableCell.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableCell.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableCell.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableRow.StyledText.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableRow.StyledText.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableRow.Text.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableRow.Text.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableRow.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Table/DotHtmlTableRow.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Html/Text/DotHtmlText.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Html/Text/DotHtmlText.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Labels/DotHtmlLabel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Labels/DotHtmlLabel.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Labels/DotLabel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Labels/DotLabel.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Labels/DotRecordLabel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Labels/DotRecordLabel.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Labels/DotTextLabel.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Labels/DotTextLabel.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeGeometryAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeGeometryAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeImageAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeImageAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeLabelOptionsAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeLabelOptionsAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeSizeAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeSizeAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeStyleAttributes.Qualities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeStyleAttributes.Qualities.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeTransformAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/DotNodeTransformAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeGeometryAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeGeometryAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeImageAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeImageAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeLabelOptionsAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeLabelOptionsAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeLayoutAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeLayoutAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeSizeAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeSizeAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeTransformAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Attributes/IDotNodeTransformAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Collections/DotNodeCollection.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Collections/DotNodeCollection.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Collections/DotNodeCollection.Qualities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Collections/DotNodeCollection.Qualities.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/Collections/DotNodeCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/Collections/DotNodeCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/DotNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/DotNode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/DotNodeDefinition.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/DotNodeDefinition.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/DotNodeDefinition.Qualities.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/DotNodeDefinition.Qualities.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/DotNodeDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/DotNodeDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Nodes/DotNodeGroup.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Nodes/DotNodeGroup.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotFillable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotFillable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotHasBorderStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotHasBorderStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotHasFontAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotHasFontAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotHasHtmlTableBorders.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotHasHtmlTableBorders.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotHasHyperlinkAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotHasHyperlinkAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotHasHyperlinkAttributesWithTooltip.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotHasHyperlinkAttributesWithTooltip.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotHasLineStyleAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotHasLineStyleAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotHasStyleOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotHasStyleOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotShapableNode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotShapableNode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotStripeFillable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotStripeFillable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotStylableEdge.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotStylableEdge.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Qualities/IDotWedgeFillable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Qualities/IDotWedgeFillable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Subgraphs/Attributes/DotSubgraphRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Subgraphs/Attributes/DotSubgraphRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Subgraphs/Attributes/IDotSubgraphAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Subgraphs/Attributes/IDotSubgraphAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Subgraphs/Attributes/IDotSubgraphRootAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Subgraphs/Attributes/IDotSubgraphRootAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Subgraphs/Collections/DotSubgraphCollection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Subgraphs/Collections/DotSubgraphCollection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Subgraphs/DotSubgraph.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Subgraphs/DotSubgraph.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Subgraphs/DotSubgraphSection.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Subgraphs/DotSubgraphSection.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Entities/Subgraphs/DotSubgraphSection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Entities/Subgraphs/DotSubgraphSection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotAttributeCollectionExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotAttributeCollectionExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotEdgeEndpointRootAttributesExtension.Arrowhead.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotEdgeEndpointRootAttributesExtension.Arrowhead.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotEdgeEndpointRootAttributesExtension.Port.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotEdgeEndpointRootAttributesExtension.Port.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotEntityAttributesExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotEntityAttributesExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotFillableExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotFillableExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotGraphExtension.Save.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotGraphExtension.Save.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotGraphExtension.SaveAsync.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotGraphExtension.SaveAsync.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotGraphExtension.ToDot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotGraphExtension.ToDot.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotGraphStyleAttributesExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotGraphStyleAttributesExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotHasBorderStyleAttributesExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotHasBorderStyleAttributesExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotHasFontAttributesExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotHasFontAttributesExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotHasHtmlTableBordersExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotHasHtmlTableBordersExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotHasHyperlinkAttributesExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotHasHyperlinkAttributesExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotHasLineStyleAttributesExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotHasLineStyleAttributesExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotHasStyleOptionsExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotHasStyleOptionsExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotNodeHtmlExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotNodeHtmlExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotNodeRecordExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotNodeRecordExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotNodeRoundedRecordExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotNodeRoundedRecordExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotShapableNodeExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotShapableNodeExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotStringExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotStringExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotStripeFillableExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotStripeFillableExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotStylableEdgeExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotStylableEdgeExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Extensions/DotWedgeFillableExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Extensions/DotWedgeFillableExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/GiGraph.Dot.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/GiGraph.Dot.csproj
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Entities/IDotEntity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Entities/IDotEntity.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Entities/IDotGraph.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Entities/IDotGraph.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Entities/IDotGraphSection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Entities/IDotGraphSection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/EnumHelpers/DotEnumMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/EnumHelpers/DotEnumMetadata.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeCollectionGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeCollectionGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeGenerator.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeGenerator.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeListGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Attributes/DotAttributeListGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Attributes/DotHtmlLabelAttributeGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Attributes/DotHtmlLabelAttributeGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Clusters/DotClusterGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Clusters/DotClusterGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Clusters/DotClusterSectionGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Clusters/DotClusterSectionGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/DotEntityGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/DotEntityGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/DotEntityWithAttributeListGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/DotEntityWithAttributeListGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotClusterEndpointGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotClusterEndpointGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeCollectionGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeCollectionGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeEndpointGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeEndpointGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeEndpointGroupGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeEndpointGroupGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeSubgraphEndpointGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotEdgeSubgraphEndpointGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotEndpointGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotEndpointGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Edges/DotEndpointGroupGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Edges/DotEndpointGroupGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Graphs/DotCommonGraphGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Graphs/DotCommonGraphGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphGeneratorBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphGeneratorBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphSectionGenerator.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphSectionGenerator.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphSectionGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Graphs/DotGraphSectionGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Graphs/IDotGraphGeneratorBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Graphs/IDotGraphGeneratorBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/IDotEntityGenerator.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/IDotEntityGenerator.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/IDotEntityGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/IDotEntityGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeCollectionGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeCollectionGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeGenerator.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeGenerator.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeGroupGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Nodes/DotNodeGroupGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Providers/DotEntityGeneratorsProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Providers/DotEntityGeneratorsProvider.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Providers/DotEntityGeneratorsProviderBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Providers/DotEntityGeneratorsProviderBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Providers/IDotEntityGeneratorsProvider.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Providers/IDotEntityGeneratorsProvider.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Providers/IDotEntityGeneratorsProviderBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Providers/IDotEntityGeneratorsProviderBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Subgraphs/DotCommonSubgraphGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Subgraphs/DotCommonSubgraphGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Subgraphs/DotSubgraphCollectionGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Subgraphs/DotSubgraphCollectionGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Subgraphs/DotSubgraphGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Subgraphs/DotSubgraphGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Generators/Subgraphs/DotSubgraphSectionGenerator.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Generators/Subgraphs/DotSubgraphSectionGenerator.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributeKeyAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributeKeyAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributeKeys.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributeKeys.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributeMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributeMetadata.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributeMetadataAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributeMetadataAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributePropertyMetadata.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributePropertyMetadata.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributeValue.Generic.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributeValue.Generic.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributeValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributeValue.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotAttributeValueAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotAttributeValueAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotCompatibleElements.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotCompatibleElements.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotCompatibleLayoutEngines.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotCompatibleLayoutEngines.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotCompatibleOutputs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotCompatibleOutputs.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/DotJoinableTypeAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/DotJoinableTypeAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/Html/DotHtmlAttributeValue.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/Html/DotHtmlAttributeValue.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/Html/DotHtmlAttributeValueAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/Html/DotHtmlAttributeValueAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/Html/DotHtmlJoinableTypeAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/Html/DotHtmlJoinableTypeAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/IDotAttributeValueAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/IDotAttributeValueAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Metadata/IDotJoinableTypeAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Metadata/IDotJoinableTypeAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotClusterDiscriminators.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotClusterDiscriminators.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Clusters.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Clusters.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Edges.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Edges.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotFormattingOptions.GlobalAttributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotFormattingOptions.GlobalAttributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Nodes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Nodes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Subgraphs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotFormattingOptions.Subgraphs.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotFormattingOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotFormattingOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.AttributeOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.AttributeOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.ClusterOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.ClusterOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.ColorOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.ColorOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.CommentOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.CommentOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.EdgeOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.EdgeOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.GraphOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.GraphOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.HtmlOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.HtmlOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.SubgraphOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.SubgraphOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxRules.Attributes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxRules.Attributes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxRules.Html.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxRules.Html.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotSyntaxRules.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotSyntaxRules.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotTextCase.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotTextCase.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Options/DotTokenType.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Options/DotTokenType.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Qualities/IDotAnnotatable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Qualities/IDotAnnotatable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Qualities/IDotEncodable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Qualities/IDotEncodable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Qualities/IDotEscapable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Qualities/IDotEscapable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Qualities/IDotHtmlEncodable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Qualities/IDotHtmlEncodable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Qualities/IDotOrderable.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Qualities/IDotOrderable.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/DotNewLine.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/DotNewLine.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/DotTextCasing.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/DotTextCasing.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotAngleBracketsEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotAngleBracketsEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotBackslashEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotBackslashEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotCarriageReturnEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotCarriageReturnEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotCurlyBracketsEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotCurlyBracketsEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotQuotationMarkEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotQuotationMarkEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotSpaceEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotSpaceEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotSpacePaddingEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotSpacePaddingEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotSystemDefaultNewLineEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotSystemDefaultNewLineEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotUnixNewLineEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotUnixNewLineEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotVerticalBarEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotVerticalBarEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/DotWindowsNewLineEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/DotWindowsNewLineEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/Html/DotHtmlEncodeEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/Html/DotHtmlEncodeEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/Html/DotSpaceHtmlEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/Html/DotSpaceHtmlEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/Html/DotTrailingBackslashHtmlEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/Html/DotTrailingBackslashHtmlEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/IDotTextEscaper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/IDotTextEscaper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/Pipelines/DotTextEscapingPipeline.Html.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/Pipelines/DotTextEscapingPipeline.Html.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/Pipelines/DotTextEscapingPipeline.Record.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/Pipelines/DotTextEscapingPipeline.Record.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Text/Escaping/Pipelines/DotTextEscapingPipeline.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Text/Escaping/Pipelines/DotTextEscapingPipeline.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Attributes/DotAttributeListItemWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Attributes/DotAttributeListItemWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Attributes/DotAttributeWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Attributes/DotAttributeWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Attributes/IDotAttributeListItemWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Attributes/IDotAttributeListItemWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Attributes/IDotAttributeWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Attributes/IDotAttributeWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Clusters/DotClusterWriterRoot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Clusters/DotClusterWriterRoot.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Comments/DotCommentWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Comments/DotCommentWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Comments/IDotCommentWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Comments/IDotCommentWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/DotEntityStatementWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/DotEntityStatementWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/DotEntityWithAttributeListWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/DotEntityWithAttributeListWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/DotEntityWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/DotEntityWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/DotEntityWriterConfiguration.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/DotEntityWriterConfiguration.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/DotPaddedEntityWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/DotPaddedEntityWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/Attributes/DotGlobalEdgeAttributesWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/Attributes/DotGlobalEdgeAttributesWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/Attributes/IDotGlobalEdgeAttributesWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/Attributes/IDotGlobalEdgeAttributesWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/DotEdgeStatementWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/DotEdgeStatementWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/DotEdgeWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/DotEdgeWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/DotEndpointGroupWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/DotEndpointGroupWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/DotEndpointWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/DotEndpointWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/IDotEdgeStatementWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/IDotEdgeStatementWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/IDotEdgeWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/IDotEdgeWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/IDotEndpointGroupWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/IDotEndpointGroupWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Edges/IDotEndpointWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Edges/IDotEndpointWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/Attributes/DotGlobalGraphAttributesWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/Attributes/DotGlobalGraphAttributesWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphBlockWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphBlockWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphBodyWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphBodyWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphWriterRoot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/DotGraphWriterRoot.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/IDotCommonGraphWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/IDotCommonGraphWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/IDotGraphBodyWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/IDotGraphBodyWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/IDotGraphWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/IDotGraphWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Graphs/IDotGraphWriterRoot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Graphs/IDotGraphWriterRoot.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/IDotEntityWithAttributeListWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/IDotEntityWithAttributeListWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/IDotEntityWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/IDotEntityWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Nodes/DotNodeStatementWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Nodes/DotNodeStatementWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Nodes/DotNodeWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Nodes/DotNodeWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Nodes/IDotNodeStatementWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Nodes/IDotNodeStatementWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Nodes/IDotNodeWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Nodes/IDotNodeWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Options/DotTokenWriterOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Options/DotTokenWriterOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Options/DotTokenWriterOptionsExtension.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Options/DotTokenWriterOptionsExtension.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Subgraphs/DotSubgraphWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Subgraphs/DotSubgraphWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Subgraphs/DotSubgraphWriterRoot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Subgraphs/DotSubgraphWriterRoot.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Subgraphs/IDotSubgraphWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Subgraphs/IDotSubgraphWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/Subgraphs/IDotSubgraphWriterRoot.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/Subgraphs/IDotSubgraphWriterRoot.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/TokenWriter/DotAppendTokenEventArgs.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/TokenWriter/DotAppendTokenEventArgs.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Output/Writers/TokenWriter/DotTokenWriter.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Output/Writers/TokenWriter/DotTokenWriter.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Shim/System/Diagnostics/CodeAnalysis/MaybeNullWhenAttribute.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Shim/System/Diagnostics/CodeAnalysis/MaybeNullWhenAttribute.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Shim/System/Runtime/CompilerServices/IsExternalInit.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Shim/System/Runtime/CompilerServices/IsExternalInit.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Alignment/DotAlignment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Alignment/DotAlignment.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Alignment/DotAlignmentOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Alignment/DotAlignmentOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Alignment/DotHorizontalAlignment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Alignment/DotHorizontalAlignment.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Alignment/DotVerticalAlignment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Alignment/DotVerticalAlignment.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Clusters/DotClusterId.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Clusters/DotClusterId.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Clusters/DotClusterVisualizationMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Clusters/DotClusterVisualizationMode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Clusters/Style/DotClusterFillStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Clusters/Style/DotClusterFillStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Colors/DotColor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Colors/DotColor.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Colors/DotColorDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Colors/DotColorDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Colors/DotColorSchemes.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Colors/DotColorSchemes.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Colors/DotGradientColor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Colors/DotGradientColor.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Colors/DotMulticolor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Colors/DotMulticolor.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Colors/DotWeightedColor.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Colors/DotWeightedColor.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowhead.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowhead.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowheadDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowheadDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowheadParts.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowheadParts.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowheadShape.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/Arrowheads/DotArrowheadShape.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/Arrowheads/DotCompositeArrowhead.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/Arrowheads/DotCompositeArrowhead.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/DotCompassPoint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/DotCompassPoint.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/DotEdgeDirections.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/DotEdgeDirections.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/DotEndpointPort.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/DotEndpointPort.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Edges/Layout/DotEdgeOrderingMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Edges/Layout/DotEdgeOrderingMode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Encoders/DotDoubleListEncoder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Encoders/DotDoubleListEncoder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EnumHelpers/DotEnumHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EnumHelpers/DotEnumHelper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EnumHelpers/DotPartialEnumMapper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EnumHelpers/DotPartialEnumMapper.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EscapeString/DotConcatenatedEscapeString.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EscapeString/DotConcatenatedEscapeString.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EscapeString/DotEscapeString.EscapeSequences.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EscapeString/DotEscapeString.EscapeSequences.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EscapeString/DotEscapeString.Helpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EscapeString/DotEscapeString.Helpers.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EscapeString/DotEscapeString.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EscapeString/DotEscapeString.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EscapeString/DotEscapedString.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EscapeString/DotEscapedString.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EscapeString/DotFormattedTextBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EscapeString/DotFormattedTextBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/EscapeString/DotUnescapedString.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/EscapeString/DotUnescapedString.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Fonts/DotFont.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Fonts/DotFont.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Fonts/DotFontConvention.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Fonts/DotFontConvention.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Fonts/DotFontStyles.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Fonts/DotFontStyles.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Fonts/DotStyledFont.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Fonts/DotStyledFont.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Geometry/DotPoint.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Geometry/DotPoint.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Geometry/DotPolygon.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Geometry/DotPolygon.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Geometry/DotRectangle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Geometry/DotRectangle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Geometry/DotSize.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Geometry/DotSize.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Geometry/DotSizing.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Geometry/DotSizing.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Geometry/DotTransform.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Geometry/DotTransform.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/DotOrientation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/DotOrientation.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphAspectRatio.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphAspectRatio.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphScaling.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphScaling.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphScalingDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphScalingDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphScalingMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/Scaling/DotGraphScalingMode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/Viewport/DotNodeCenteredViewport.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/Viewport/DotNodeCenteredViewport.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/Viewport/DotPointCenteredViewport.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/Viewport/DotPointCenteredViewport.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Canvas/Viewport/DotViewport.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Canvas/Viewport/DotViewport.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Charset/DotCharsets.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Charset/DotCharsets.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Font/DotGraphFont.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Font/DotGraphFont.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/DotEdgeShape.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/DotEdgeShape.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/DotLayoutDirection.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/DotLayoutDirection.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/DotLayoutEngines.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/DotLayoutEngines.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/DotOutputOrder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/DotOutputOrder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotArrayPackingMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotArrayPackingMode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotArrayPackingOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotArrayPackingOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotGranularityPackingMode.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotGranularityPackingMode.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingEnabled.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingEnabled.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingGranularity.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingGranularity.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingMargin.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingMargin.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingModeDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Packing/DotPackingModeDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRadialRankSeparation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRadialRankSeparation.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRank.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRank.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRankSeparation.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRankSeparation.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRankSeparationDefinition.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Graphs/Layout/Spacing/DotRankSeparationDefinition.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/DotHtmlString.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/DotHtmlString.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableBorders.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableBorders.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableCellAlignmentOptions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableCellAlignmentOptions.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableCellHorizontalAlignment.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableCellHorizontalAlignment.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableColumnFormat.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableColumnFormat.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableCornerStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableCornerStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableFillStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableFillStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableRowFormat.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableRowFormat.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableStyles.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Html/Table/DotHtmlTableStyles.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Hyperlinks/DotHyperlink.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Hyperlinks/DotHyperlink.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Hyperlinks/DotHyperlinkTargets.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Hyperlinks/DotHyperlinkTargets.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Identifiers/DotId.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Identifiers/DotId.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Images/DotImage.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Images/DotImage.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Images/DotImageScaling.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Images/DotImageScaling.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Nodes/DotNodeShape.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Nodes/DotNodeShape.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Nodes/Style/DotNodeFillStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Nodes/Style/DotNodeFillStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecord.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendField.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendField.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendFields.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendFields.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendSubrecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendSubrecord.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendUnflippedRecord.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecordBuilder.AppendUnflippedRecord.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecordBuilder.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecordBuilder.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecordField.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecordField.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Records/DotRecordTextField.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Records/DotRecordTextField.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Styling/DotBorderStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Styling/DotBorderStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Styling/DotBorderWeight.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Styling/DotBorderWeight.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Styling/DotCornerStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Styling/DotCornerStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Styling/DotFillStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Styling/DotFillStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Styling/DotLineStyle.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Styling/DotLineStyle.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Styling/DotLineWeight.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Styling/DotLineWeight.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/Styling/DotStyles.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/Styling/DotStyles.cs
--------------------------------------------------------------------------------
/src/GiGraph.Dot/Types/TypeHelper.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/src/GiGraph.Dot/Types/TypeHelper.cs
--------------------------------------------------------------------------------
/supported_attributes_map.txt:
--------------------------------------------------------------------------------
1 | ./test/GiGraph.Dot.Entities.Tests/Attributes/__snapshots__/attribute_property_key_map.snap
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeEncodingTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeEncodingTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeKeyAssociationTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeKeyAssociationTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeMetadataTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeMetadataTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributePropertiesTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributePropertiesTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeSupportPerElementTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/DotAttributeSupportPerElementTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/DotIdAttributeTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/DotIdAttributeTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/DotStringAttributeTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/DotStringAttributeTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/GraphvizDocumentation/Graphviz.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/GraphvizDocumentation/Graphviz.html
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/Helpers/DotPropertyTreeFactory.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/Helpers/DotPropertyTreeFactory.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/Setters/DotFontAttributesTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/Setters/DotFontAttributesTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Attributes/Setters/DotNodeSizeAttributesTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Attributes/Setters/DotNodeSizeAttributesTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Clusters/DotClusterAttributeTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Clusters/DotClusterAttributeTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Clusters/DotClusterStyleAttributeOptionsTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Clusters/DotClusterStyleAttributeOptionsTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Clusters/__snapshots__/styled_cluster.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Clusters/__snapshots__/styled_cluster.snap
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeEndpointArrowheadSettersTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeEndpointArrowheadSettersTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeEndpointPortSettersTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeEndpointPortSettersTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeHyperlinkTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeHyperlinkTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeStyleAttributeOptionsTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeStyleAttributeOptionsTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Edges/DotEdgeTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Edges/__snapshots__/edge_endpoints_ports.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Edges/__snapshots__/edge_endpoints_ports.snap
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Edges/__snapshots__/styled_edge.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Edges/__snapshots__/styled_edge.snap
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Endpoints/DotEndpointTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Endpoints/DotEndpointTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/GiGraph.Dot.Entities.Tests.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/GiGraph.Dot.Entities.Tests.csproj
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/GraphSections/__snapshots__/styled_graph.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/GraphSections/__snapshots__/styled_graph.snap
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/Builder/DotHtmlBuilderTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/Builder/DotHtmlBuilderTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/Builder/__snapshots__/html_from_nested_builder.snap:
--------------------------------------------------------------------------------
1 | bold italic
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlAttributeValueEscapingTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlAttributeValueEscapingTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlCommentTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlCommentTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlEntitiesTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlEntitiesTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlEntityCollectionTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlEntityCollectionTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlFontTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlFontTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlImageTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlImageTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlLineBreakTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlLineBreakTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlTextTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlTextTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlVoidElementTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/DotHtmlVoidElementTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/DotHtmlFontStyleTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/DotHtmlFontStyleTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/DotHtmlFontTest.TextHelpers.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/DotHtmlFontTest.TextHelpers.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/DotHtmlFontTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/DotHtmlFontTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_bold_text.snap:
--------------------------------------------------------------------------------
1 | bold text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_entity_styling_bold.snap:
--------------------------------------------------------------------------------
1 | text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_entity_styling_normal.snap:
--------------------------------------------------------------------------------
1 | text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_font.snap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_font.snap
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_italic_text.snap:
--------------------------------------------------------------------------------
1 | italic text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_overline_text.snap:
--------------------------------------------------------------------------------
1 | strikethrough text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_text_styling_bold_centered_line.snap:
--------------------------------------------------------------------------------
1 | text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_text_styling_bold_italic_text.snap:
--------------------------------------------------------------------------------
1 | text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_text_styling_bold_text.snap:
--------------------------------------------------------------------------------
1 | text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_text_styling_normal_text.snap:
--------------------------------------------------------------------------------
1 | text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/FontStyles/__snapshots__/html_underlined_text.snap:
--------------------------------------------------------------------------------
1 | underlined text
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/Rules/DotHtmlRulesTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mariusz-schimke/GiGraph/HEAD/test/GiGraph.Dot.Entities.Tests/Html/Rules/DotHtmlRulesTest.cs
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/Rules/__snapshots__/html_horizontal_rule.snap:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/test/GiGraph.Dot.Entities.Tests/Html/__snapshots__/html_line_break.snap:
--------------------------------------------------------------------------------
1 |