Skip to content

Commit 6e2ef21

Browse files
committed
update to 3.10
1 parent 8ea62be commit 6e2ef21

6 files changed

Lines changed: 481 additions & 587 deletions

File tree

docsite/blog/2016-08-28-tab-delimited-text-parser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags: [old]
77

88
I'd like to share a piece of code which might be useful for someone. It is called text2tab (at the time of initial publishing - Abap data parser). Its purpose is parsing of TAB-delimited text into an arbitrary flat structure or internal table. Why TAB-delimited? This is the format which is used automatically if you copy (clipboard) something from Excel - this creates some opportunities for good program usability.
99

10-
<!-- truncate -->
10+
{/*truncate*/}
1111

1212
## Example
1313

docsite/blog/2018-09-02-tab-delimited-text-serializer/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags: [old]
77

88
My first article on this topic was quite a while ago - [Abap tab-delimited text parser](/blog/tab-delimited-text-parser) - Since then I added some improvements to the project. The main new feature is serializing. `ZCL_TEXT2TAB_SERIALIZER` class supports serialization of flat tables and structures. Here is how it works ...
99

10-
<!-- truncate -->
10+
{/*truncate*/}
1111

1212
## Let's start with an example
1313

docsite/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const config = {
2929

3030
future: {
3131
v4: true,
32-
experimental_faster: true,
32+
faster: true,
3333
},
3434

3535
title: 'Text2Tab',

docsite/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
"write-heading-ids": "docusaurus write-heading-ids"
1515
},
1616
"dependencies": {
17-
"@docusaurus/core": "3.9.1",
18-
"@docusaurus/faster": "^3.9.1",
19-
"@docusaurus/plugin-client-redirects": "^3.9.1",
20-
"@docusaurus/preset-classic": "3.9.1",
17+
"@docusaurus/core": "3.10.0",
18+
"@docusaurus/faster": "^3.10.0",
19+
"@docusaurus/plugin-client-redirects": "^3.10.0",
20+
"@docusaurus/preset-classic": "3.10.0",
2121
"@mdx-js/react": "^3.1.1",
2222
"clsx": "^2.1.1",
2323
"prism-react-renderer": "^2.4.1",
24-
"react": "^19.1.1",
25-
"react-dom": "^19.1.1"
24+
"react": "^19.2.5",
25+
"react-dom": "^19.2.5"
2626
},
2727
"devDependencies": {
28-
"@docusaurus/module-type-aliases": "3.9.1",
29-
"@docusaurus/types": "3.9.1"
28+
"@docusaurus/module-type-aliases": "3.10.0",
29+
"@docusaurus/types": "3.10.0"
3030
},
3131
"browserslist": {
3232
"production": [

0 commit comments

Comments
 (0)