Skip to content

Commit

Permalink
Fixed xref, iref and anchor handling in word input.
Browse files Browse the repository at this point in the history
  • Loading branch information
hallambaker committed Dec 28, 2019
1 parent 62aecfa commit f1d9c47
Show file tree
Hide file tree
Showing 37 changed files with 6,421 additions and 1,690 deletions.
3 changes: 2 additions & 1 deletion DocTools/Goedel.Document.Markdown/Document.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ public enum BlockType {

public abstract class TextSegment {
string tag;

public CatalogEntry CatalogEntry = null;
public string Tag {
get => tag ?? CatalogEntry?.Key;
Expand Down Expand Up @@ -206,7 +207,7 @@ public class TextSegmentOpen : TextSegment {
public TextSegment Close = null;
public string Text;
public bool IsEmpty = false;

public bool IsInvisible = false;
public TextSegmentOpen () {
}

Expand Down
Loading

0 comments on commit f1d9c47

Please sign in to comment.