diff --git a/tools/actions/convert/test/fixtures/product1-converted.html b/tools/actions/convert/test/fixtures/product1-converted.html index 00903e369..7529c25f2 100644 --- a/tools/actions/convert/test/fixtures/product1-converted.html +++ b/tools/actions/convert/test/fixtures/product1-converted.html @@ -28,13 +28,13 @@

Next-generation fluorescent imaging solution for the assurance of monoclonal

:dam-check-box:

-

Demonstrated IND success

+

Demonstrated IND success

The Monoclonality Report feature streamlines the creation of supporting documentation for regulatory agencies. Reports are automatically generated based on the parameters you select. The Monoclonality Report is an audit-ready document that supports filing for an Investigational New Drug (IND) Application with the FDA. (21 CFR Part 312)

:dam-bullseye:

-

Multichannel imaging and automated confluence

+

Multichannel imaging and automated confluence

Algorithms are optimized for accurate cell detection and address varying cell types and conditions. Publication-ready high-resolution imaging provides automatic confluence analysis and monoclonality assurance.

:dam-cog-check:

-

Rapid single-cell confirmation

+

Rapid single-cell confirmation

The imager delivers industry-leading acquisition times, imaging a 96-well plate in as little as two minutes and can verify monoclonality from day zero with fluorescence.

Video Player
@@ -45,17 +45,17 @@

Highlights

:dam-code:

-

White light and fluorescent imaging

+

White light and fluorescent imaging

Image every well in every plate with rapid acquisition times with label-free white light. Multichannel fluorescence imaging provides additional confidence of monoclonality and comparative confluence assays (red vs green).

:dam-line-chart:

-

Data tools to accelerate research timelines

+

Data tools to accelerate research timelines

The software automatically calculates confluence measurements and generates growth curves, heatmaps, and image montages. Measurements for every well are automatically tracked over time. Streamline multiple steps (imaging, sample tracking, data analysis and report generation) in the cell line development workflow for IND filing.

:dam-volume:

-

Quickly image a variety of plate formats and cell types

+

Quickly image a variety of plate formats and cell types

Image a 96-well plate in under two minutes. Compatible with adherent or settled suspension cell types such as CHO, HEK, hybridomas, iPSCs, and many other cell types.

@@ -64,17 +64,17 @@

Highlights

:dam-simpified-bar:

-

Intelligent analysis with easy-to-use software

+

Intelligent analysis with easy-to-use software

The software automatically calculates confluence for each imaging time point. The growth curve, image montage, total growth, and mean rate are generated automatically and are exportable. Guided software user interface allows for simple 1-hour training.

:dam-high-res-image:

-

High-resolution images

+

High-resolution images

High-speed fluorescence and high-resolution white light imaging with accurate detection of single cells including debris. Image visualization and data tracking over multiple days.

:dam-robot-arm:

-

Custom automation options*

+

Custom automation options*

The Automation and Customization Team offers a variety of custom services from robotic plate loading to fully automated workstations with liquid handling and incubation. We have built our custom automated work cells with the CloneSelect Imager for iPSC workflows, full assay systems and drug toxicity and characterization research.

diff --git a/tools/actions/convert/test/fixtures/product2-converted.html b/tools/actions/convert/test/fixtures/product2-converted.html index fc10e89f2..a234b8a64 100644 --- a/tools/actions/convert/test/fixtures/product2-converted.html +++ b/tools/actions/convert/test/fixtures/product2-converted.html @@ -27,13 +27,13 @@

A complete solution for the automated screening and objective selection of h

:dam-cog-check:

-

Automate antibody discovery and cell line development workflows

+

Automate antibody discovery and cell line development workflows

ClonePix 2 picker is 10x faster than labor-intensive limiting dilution and FACS. Our sophisticated software and integrated robotics enable a screening speed of > 10,000 clones per day.

:dam-colony:

-

Select cells with desirable attributes with monoclonality assurance from day 0

+

Select cells with desirable attributes with monoclonality assurance from day 0

Easily screen and select clones based on protein productivity, antigen-specificity, cell viability, and expression levels of tagged recombinant proteins.

:dam-bullseye:

-

Increase the probability of identifying high-value clones while eliminating or recovering unstable clones early

+

Increase the probability of identifying high-value clones while eliminating or recovering unstable clones early

Picking accuracy < 1 mm. Robotic picking reduces the risk of colony disturbance. Images of picked clones are stored with data.

@@ -46,17 +46,17 @@

Features

:dam-volume:

-

Multiple detection methods

+

Multiple detection methods

White light identifies and measures clone morphology, size and proximity. Fluorescence indicates expression level and/or specificity. Up to five fluorescent filters are available for multiplexing.

:dam-sterile:

-

Sterility maintenance

+

Sterility maintenance

A host of sterility features and options including a UV light process for sanitizing the interior of the instrument, as well as pin washing and halogen drying are standard.

:dam-hierarchy:

-

Integrated plate storage

+

Integrated plate storage

Includes two storage stacks for source and destination plates, each with a capacity of 10 plates.

@@ -65,17 +65,17 @@

Features

:dam-colony:

-

Discrete colony formation

+

Discrete colony formation

Semi-solid CloneMediaTM encourages single cells to grow into discreet colonies, and allows for ease of plating. The media allows for a higher density of clones to be screened.

:dam-cog-check:

-

Animal-free media and reagents

+

Animal-free media and reagents

Chemically defined and animal-free, CloneMedia cell-culture media, is optimized to increase productivity and aid in visualizing secreted antibodies when used with the CloneDetectTM detection agent.

:dam-robot-arm:

-

Custom automation options*

+

Custom automation options*

The Advanced Workflow Engineering Solutions Team can customize the monoclonality system and offer added services such as integrated verification of monoclonality.

diff --git a/tools/importer/transformers/util.js b/tools/importer/transformers/util.js index 11503d2a6..dfca7deb8 100644 --- a/tools/importer/transformers/util.js +++ b/tools/importer/transformers/util.js @@ -54,7 +54,9 @@ export const getFutureSectionCard = (featureSectionCardDiv, document) => { imgEl.src = image; featureSectionCardDiv.append(imgEl); const titleDivEl = document.createElement('div'); - titleDivEl.textContent = title; + const strongEl = document.createElement('strong'); + strongEl.textContent = title; + titleDivEl.append(strongEl); featureSectionCardDiv.append(titleDivEl); const pEl = document.createElement('p'); pEl.textContent = description;