Skip to content

Commit

Permalink
Link to GitHub pages images in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgecrw committed Jun 5, 2024
1 parent 317f012 commit 66053db
Show file tree
Hide file tree
Showing 174 changed files with 320 additions and 320 deletions.
24 changes: 12 additions & 12 deletions musicxml/src/datatypes/arrow_direction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,34 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Represents the direction in which an arrow points, using Unicode arrow terminology.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum ArrowDirection {
/// ![Down](arrow-direction-down.png)
/// ![Down](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-down.png)
Down,
/// ![Left](arrow-direction-left.png)
/// ![Left](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-left.png)
Left,
/// ![LeftRight](arrow-direction-left-right.png)
/// ![LeftRight](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-left-right.png)
#[rename("left right")]
LeftRight,
/// ![Northeast](arrow-direction-northeast.png)
/// ![Northeast](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-northeast.png)
Northeast,
/// ![NortheastSouthwest](arrow-direction-northeast-southwest.png)
/// ![NortheastSouthwest](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-northeast-southwest.png)
#[rename("northeast southwest")]
NortheastSouthwest,
/// ![Northwest](arrow-direction-northwest.png)
/// ![Northwest](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-northwest.png)
Northwest,
/// ![NorthwestSoutheast](arrow-direction-northwest-southeast.png)
/// ![NorthwestSoutheast](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-northwest-southeast.png)
#[rename("northwest southeast")]
NorthwestSoutheast,
/// Another direction besides one of those listed.
Other,
/// ![Right](arrow-direction-right.png)
/// ![Right](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-right.png)
Right,
/// ![Southeast](arrow-direction-southeast.png)
/// ![Southeast](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-southeast.png)
Southeast,
/// ![Southwest](arrow-direction-southwest.png)
/// ![Southwest](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-southwest.png)
Southwest,
/// ![Up](arrow-direction-up.png)
/// ![Up](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-up.png)
Up,
/// ![UpDown](arrow-direction-up-down.png)
/// ![UpDown](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-direction-up-down.png)
#[rename("up down")]
UpDown,
}
12 changes: 6 additions & 6 deletions musicxml/src/datatypes/arrow_style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// indicating that an arrow in one direction should be combined with an arrow in the other direction.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum ArrowStyle {
/// ![Combined](arrow-style-combined.png)
/// ![Combined](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-style-combined.png)
Combined,
/// ![Double](arrow-style-double.png)
/// ![Double](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-style-double.png)
Double,
/// ![Filled](arrow-style-filled.png)
/// ![Filled](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-style-filled.png)
Filled,
/// ![Hollow](arrow-style-hollow.png)
/// ![Hollow](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-style-hollow.png)
Hollow,
/// Another style besides on of those listed.
Other,
/// ![Paired](arrow-style-paired.png)
/// ![Paired](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-style-paired.png)
Paired,
/// ![Single](arrow-style-single.png)
/// ![Single](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/arrow-style-single.png)
Single,
}
4 changes: 2 additions & 2 deletions musicxml/src/datatypes/backward_forward.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// the end of the repeat has a [Backward][BackwardForward::Backward] direction.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum BackwardForward {
/// ![Backward](backward-forward-backward.png)
/// ![Backward](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/backward-forward-backward.png)
Backward,
/// ![Forward](backward-forward-forward.png)
/// ![Forward](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/backward-forward-forward.png)
Forward,
}
20 changes: 10 additions & 10 deletions musicxml/src/datatypes/bar_style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,30 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Represents barline style information.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum BarStyle {
/// ![Dashed](bar-style-dashed.png)
/// ![Dashed](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-dashed.png)
Dashed,
/// ![Dotted](bar-style-dotted.png)
/// ![Dotted](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-dotted.png)
Dotted,
/// ![Heavy](bar-style-heavy.png)
/// ![Heavy](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-heavy.png)
Heavy,
/// ![HeavyHeavy](bar-style-heavy-heavy.png)
/// ![HeavyHeavy](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-heavy-heavy.png)
#[rename("heavy-heavy")]
HeavyHeavy,
/// ![HeavyLight](bar-style-heavy-light.png)
/// ![HeavyLight](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-heavy-light.png)
#[rename("heavy-light")]
HeavyLight,
/// ![LightHeavy](bar-style-light-heavy.png)
/// ![LightHeavy](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-light-heavy.png)
#[rename("light-heavy")]
LightHeavy,
/// ![LightLight](bar-style-light-light.png)
/// ![LightLight](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-light-light.png)
#[rename("light-light")]
LightLight,
/// No barline appears.
None,
/// ![Regular](bar-style-regular.png)
/// ![Regular](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-regular.png)
Regular,
/// ![Short](bar-style-short.png)
/// ![Short](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-short.png)
Short,
/// ![Tick](bar-style-tick.png)
/// ![Tick](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bar-style-tick.png)
Tick,
}
10 changes: 5 additions & 5 deletions musicxml/src/datatypes/beam_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Represents the type of beam associated with each of 8 beam levels (up to 1024th notes) available for each note.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum BeamValue {
/// ![BackwardHook](beam-value-backward-hook.png)
/// ![BackwardHook](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/beam-value-backward-hook.png)
#[rename("backward hook")]
BackwardHook,
/// ![Begin](beam-value-begin.png)
/// ![Begin](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/beam-value-begin.png)
Begin,
/// ![Continue](beam-value-continue.png)
/// ![Continue](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/beam-value-continue.png)
Continue,
/// ![End](beam-value-end.png)
/// ![End](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/beam-value-end.png)
End,
/// ![ForwardHook](beam-value-forward-hook.png)
/// ![ForwardHook](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/beam-value-forward-hook.png)
#[rename("forward hook")]
ForwardHook,
}
4 changes: 2 additions & 2 deletions musicxml/src/datatypes/bend_shape.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// and the [Curved][BendShape::Curved] bend symbols commonly used in both tablature and standard notation.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum BendShape {
/// ![Angled](bend-shape-angled.png)
/// ![Angled](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bend-shape-angled.png)
Angled,
/// ![Curved](bend-shape-curved.png)
/// ![Curved](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/bend-shape-curved.png)
Curved,
}
6 changes: 3 additions & 3 deletions musicxml/src/datatypes/cancel_location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// For mid-measure key elements, [BeforeBarline][CancelLocation::BeforeBarline] should be treated like [Left][CancelLocation::Left].
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum CancelLocation {
/// ![Left](cancel-location-left.png)
/// ![Left](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/cancel-location-left.png)
Left,
/// ![Right](cancel-location-right.png)
/// ![Right](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/cancel-location-right.png)
Right,
/// ![BeforeBarline](cancel-location-before-barline.png)
/// ![BeforeBarline](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/cancel-location-before-barline.png)
#[rename("before-barline")]
BeforeBarline,
}
4 changes: 2 additions & 2 deletions musicxml/src/datatypes/circular_arrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Represents the direction in which a circular arrow points, using Unicode arrow terminology.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum CircularArrow {
/// ![Anticlockwise](circular-arrow-anticlockwise.png)
/// ![Anticlockwise](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/circular-arrow-anticlockwise.png)
Anticlockwise,
/// ![Clockwise](circular-arrow-clockwise.png)
/// ![Clockwise](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/circular-arrow-clockwise.png)
Clockwise,
}
10 changes: 5 additions & 5 deletions musicxml/src/datatypes/clef_sign.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Represents the different clef symbols.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum ClefSign {
/// ![G](clef-G.png)
/// ![G](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/clef-G.png)
#[rename("G")]
G,
/// ![F](clef-F.png)
/// ![F](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/clef-F.png)
#[rename("F")]
F,
/// ![C](clef-C.png)
/// ![C](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/clef-C.png)
#[rename("C")]
C,
/// ![Percussion](clef-percussion.png)
/// ![Percussion](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/clef-percussion.png)
Percussion,
/// ![TAB](clef-TAB.png)
/// ![TAB](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/clef-TAB.png)
///
/// The TAB sign indicates that the music that follows should be in tablature notation.
#[rename("TAB")]
Expand Down
28 changes: 14 additions & 14 deletions musicxml/src/datatypes/enclosure_shape.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,34 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// similar to a rectangle with the top line missing.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum EnclosureShape {
/// ![Rectangle](enclosure-shape-rectangle.png)
/// ![Rectangle](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-rectangle.png)
Rectangle,
/// ![Square](enclosure-shape-square.png)
/// ![Square](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-square.png)
Square,
/// ![Oval](enclosure-shape-oval.png)
/// ![Oval](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-oval.png)
Oval,
/// ![Circle](enclosure-shape-circle.png)
/// ![Circle](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-circle.png)
Circle,
/// ![Bracket](enclosure-shape-bracket.png)
/// ![Bracket](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-bracket.png)
Bracket,
/// ![Inverted Bracket](enclosure-shape-inverted-bracket.png)
/// ![Inverted Bracket](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-inverted-bracket.png)
#[rename("inverted-bracket")]
InvertedBracket,
/// ![Triangle](enclosure-shape-triangle.png)
/// ![Triangle](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-triangle.png)
Triangle,
/// ![Diamond](enclosure-shape-diamond.png)
/// ![Diamond](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-diamond.png)
Diamond,
/// ![Trill](enclosure-shape-pentagon.png)
/// ![Trill](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-pentagon.png)
Pentagon,
/// ![Hexagon](enclosure-shape-hexagon.png)
/// ![Hexagon](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-hexagon.png)
Hexagon,
/// ![Heptagon](enclosure-shape-heptagon.png)
/// ![Heptagon](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-heptagon.png)
Heptagon,
/// ![Octagon](enclosure-shape-octagon.png)
/// ![Octagon](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-octagon.png)
Octagon,
/// ![Nonagon](enclosure-shape-nonagon.png)
/// ![Nonagon](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-nonagon.png)
Nonagon,
/// ![Decagon](enclosure-shape-decagon.png)
/// ![Decagon](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/enclosure-shape-decagon.png)
Decagon,
/// No enclosure is displayed.
None,
Expand Down
4 changes: 2 additions & 2 deletions musicxml/src/datatypes/fan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Represents the type of beam fanning present on a note, used to represent accelerandos and ritardandos.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum Fan {
/// ![Accelerando](fan-accel.png)
/// ![Accelerando](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/fan-accel.png)
Accel,
/// ![Ritardando](fan-rit.png)
/// ![Ritardando](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/fan-rit.png)
Rit,
}
6 changes: 3 additions & 3 deletions musicxml/src/datatypes/group_barline_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Indicates if the group should have common barlines.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum GroupBarlineValue {
/// ![Yes](group-barline-value-yes.png)
/// ![Yes](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/group-barline-value-yes.png)
Yes,
/// ![No](group-barline-value-no.png)
/// ![No](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/group-barline-value-no.png)
No,
/// ![Mensurstrich](group-barline-value-mensurstrich.png)
/// ![Mensurstrich](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/group-barline-value-mensurstrich.png)
#[rename("Mensurstrich")]
Mensurstrich,
}
8 changes: 4 additions & 4 deletions musicxml/src/datatypes/group_symbol_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Indicates how the symbol for a group or multi-staff part is indicated in the score.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum GroupSymbolValue {
/// ![Brace](group-symbol-value-brace.png)
/// ![Brace](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/group-symbol-value-brace.png)
Brace,
/// ![Bracket](group-symbol-value-bracket.png)
/// ![Bracket](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/group-symbol-value-bracket.png)
Bracket,
/// ![Line](group-symbol-value-line.png)
/// ![Line](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/group-symbol-value-line.png)
Line,
/// No symbol is displayed.
None,
/// ![Square](group-symbol-value-square.png)
/// ![Square](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/group-symbol-value-square.png)
Square,
}
8 changes: 4 additions & 4 deletions musicxml/src/datatypes/harmon_closed_location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// [HarmonClosedValue][super::HarmonClosedValue] is [Half][super::HarmonClosedValue::Half].
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum HarmonClosedLocation {
/// ![Bottom](harmon-closed-location-bottom.png)
/// ![Bottom](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/harmon-closed-location-bottom.png)
Bottom,
/// ![Left](harmon-closed-location-left.png)
/// ![Left](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/harmon-closed-location-left.png)
Left,
/// ![Right](harmon-closed-location-right.png)
/// ![Right](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/harmon-closed-location-right.png)
Right,
/// ![Top](harmon-closed-location-top.png)
/// ![Top](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/harmon-closed-location-top.png)
Top,
}
6 changes: 3 additions & 3 deletions musicxml/src/datatypes/harmony_arrangement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// specifies that the second element appears both below and to the right of the first.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum HarmonyArrangement {
/// ![Horizontal](harmony-arrangement-horizontal.png)
/// ![Horizontal](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/harmony-arrangement-horizontal.png)
Horizontal,
/// ![Vertical](harmony-arrangement-vertical.png)
/// ![Vertical](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/harmony-arrangement-vertical.png)
Vertical,
/// ![Diagonal](harmony-arrangement-diagonal.png)
/// ![Diagonal](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/harmony-arrangement-diagonal.png)
Diagonal,
}
8 changes: 4 additions & 4 deletions musicxml/src/datatypes/hole_closed_location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// [HoleClosedValue][super::HoleClosedValue] is [Half][super::HoleClosedValue::Half].
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum HoleClosedLocation {
/// ![Bottom](hole-closed-location-bottom.png)
/// ![Bottom](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/hole-closed-location-bottom.png)
Bottom,
/// ![Left](hole-closed-location-left.png)
/// ![Left](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/hole-closed-location-left.png)
Left,
/// ![Right](hole-closed-location-right.png)
/// ![Right](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/hole-closed-location-right.png)
Right,
/// ![Top](hole-closed-location-top.png)
/// ![Top](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/hole-closed-location-top.png)
Top,
}
10 changes: 5 additions & 5 deletions musicxml/src/datatypes/line_end.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Specifies if there is a jog up or down (or both), an arrow, or nothing at the start or end of a bracket.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum LineEnd {
/// ![Up](line-end-up.png)
/// ![Up](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-end-up.png)
Up,
/// ![Down](line-end-down.png)
/// ![Down](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-end-down.png)
Down,
/// ![Up and Down](line-end-both.png)
/// ![Up and Down](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-end-both.png)
Both,
/// ![Arrow](line-end-arrow.png)
/// ![Arrow](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-end-arrow.png)
Arrow,
/// ![None](line-end-none.png)
/// ![None](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-end-none.png)
None,
}
8 changes: 4 additions & 4 deletions musicxml/src/datatypes/line_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ use musicxml_macros::{DatatypeDeserialize, DatatypeSerialize};
/// Distinguishes between solid, dashed, dotted, and wavy lines.
#[derive(Debug, PartialEq, Eq, DatatypeDeserialize, DatatypeSerialize)]
pub enum LineType {
/// ![Dashed](line-type-dashed.png)
/// ![Dashed](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-type-dashed.png)
Dashed,
/// ![Dotted](line-type-dotted.png)
/// ![Dotted](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-type-dotted.png)
Dotted,
/// ![Solid](line-type-solid.png)
/// ![Solid](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-type-solid.png)
Solid,
/// ![Wavy](line-type-wavy.png)
/// ![Wavy](https://hedgetechllc.github.io/musicxml/musicxml/datatypes/line-type-wavy.png)
Wavy,
}
Loading

0 comments on commit 66053db

Please sign in to comment.