-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# | ||
# Facade of rsyntaxtree library. When loaded by a driver script, it does all | ||
# the necessary 'require' to use the library. | ||
# Copyright (c) 2007-2023 Yoichiro Hasebe <[email protected]> | ||
# Copyright (c) 2007-2024 Yoichiro Hasebe <[email protected]> | ||
|
||
FONT_DIR = File.expand_path(File.join(__dir__, "/../fonts")) | ||
ETYPE_NODE = 1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
#========================== | ||
# | ||
# Image utility functions to inspect text font metrics | ||
# Copyright (c) 2007-2023 Yoichiro Hasebe <[email protected]> | ||
# Copyright (c) 2007-2024 Yoichiro Hasebe <[email protected]> | ||
|
||
require_relative 'utils' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
#========================== | ||
# | ||
# Aa class that represents a basic tree element, either node or leaf. | ||
# Copyright (c) 2007-2023 Yoichiro Hasebe <[email protected]> | ||
# Copyright (c) 2007-2024 Yoichiro Hasebe <[email protected]> | ||
|
||
require_relative "markup_parser" | ||
require_relative "utils" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
#========================== | ||
# | ||
# Contains a list of unordered tree elements with a defined parent | ||
# Copyright (c) 2007-2023 Yoichiro Hasebe <[email protected]> | ||
# Copyright (c) 2007-2024 Yoichiro Hasebe <[email protected]> | ||
|
||
require_relative "element" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
# | ||
# Parses a phrase into leafs and nodes and store the result in an element list | ||
# (see element_list.rb) | ||
# Copyright (c) 2007-2023 Yoichiro Hasebe <[email protected]> | ||
# Copyright (c) 2007-2024 Yoichiro Hasebe <[email protected]> | ||
|
||
require_relative 'elementlist' | ||
require_relative 'element' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
#========================== | ||
# | ||
# Parses an element list into an SVG tree. | ||
# Copyright (c) 2007-2023 Yoichiro Hasebe <[email protected]> | ||
# Copyright (c) 2007-2024 Yoichiro Hasebe <[email protected]> | ||
|
||
require "tempfile" | ||
require_relative 'base_graph' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
#========================== | ||
# | ||
# Image utility functions to inspect text font metrics | ||
# Copyright (c) 2007-2023 Yoichiro Hasebe <[email protected]> | ||
# Copyright (c) 2007-2024 Yoichiro Hasebe <[email protected]> | ||
|
||
require 'rmagick' | ||
|
||
|