diff --git a/src/Codec/Xlsx/Parser.hs b/src/Codec/Xlsx/Parser.hs
--- a/src/Codec/Xlsx/Parser.hs
+++ b/src/Codec/Xlsx/Parser.hs
@@ -111,6 +111,7 @@
     case T.decimal v of
       Right (d, _) -> maybeToList $ fmap CellText $ IM.lookup d ss
       _ -> []
+extractCellValue _ "str" str = [CellText str]
 extractCellValue _ "n" v =
     case T.rational v of
       Right (d, _) -> [CellDouble d]
diff --git a/src/Codec/Xlsx/Types.hs b/src/Codec/Xlsx/Types.hs
--- a/src/Codec/Xlsx/Types.hs
+++ b/src/Codec/Xlsx/Types.hs
@@ -39,6 +39,9 @@
                | CellBool   Bool
                deriving (Eq, Show)
 
+-- | Currently cell details include only cell values and style ids
+-- (e.g. formulas from @\<f\>@ and inline strings from @\<is\>@
+-- subelements are ignored)
 data Cell = Cell
     { _cellStyle  :: Maybe Int
     , _cellValue  :: Maybe CellValue
@@ -93,7 +96,7 @@
 emptyStyles = Styles "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\
 \<styleSheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"></styleSheet>"
 
--- | convert column number (starting from 1) to its textual form (e.g. 3 -> "C")
+-- | convert column number (starting from 1) to its textual form (e.g. 3 -> \"C\")
 int2col :: Int -> Text
 int2col = T.pack . reverse . map int2let . base26
     where
diff --git a/xlsx.cabal b/xlsx.cabal
--- a/xlsx.cabal
+++ b/xlsx.cabal
@@ -1,6 +1,6 @@
 Name:                xlsx
 
-Version:             0.1.0.2
+Version:             0.1.0.3
 
 Synopsis:            Simple and incomplete Excel file parser/writer
 Description:
